diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/Kbuild.src | 2 | ||||
-rw-r--r-- | editors/awk.c | 2 | ||||
-rw-r--r-- | editors/cmp.c | 2 | ||||
-rw-r--r-- | editors/diff.c | 2 | ||||
-rw-r--r-- | editors/patch_bbox.c | 26 | ||||
-rw-r--r-- | editors/sed.c | 2 | ||||
-rw-r--r-- | editors/vi.c | 2 |
7 files changed, 19 insertions, 19 deletions
diff --git a/editors/Kbuild.src b/editors/Kbuild.src index 9d4b9d053..98128064d 100644 --- a/editors/Kbuild.src +++ b/editors/Kbuild.src | |||
@@ -2,7 +2,7 @@ | |||
2 | # | 2 | # |
3 | # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org> | 3 | # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org> |
4 | # | 4 | # |
5 | # Licensed under the GPL v2, see the file LICENSE in this tarball. | 5 | # Licensed under GPLv2, see file LICENSE in this source tree. |
6 | 6 | ||
7 | lib-y:= | 7 | lib-y:= |
8 | 8 | ||
diff --git a/editors/awk.c b/editors/awk.c index 83c5b47ce..f47d1ab02 100644 --- a/editors/awk.c +++ b/editors/awk.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright (C) 2002 by Dmitry Zakharov <dmit@crp.bank.gov.ua> | 5 | * Copyright (C) 2002 by Dmitry Zakharov <dmit@crp.bank.gov.ua> |
6 | * | 6 | * |
7 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include "libbb.h" | 10 | #include "libbb.h" |
diff --git a/editors/cmp.c b/editors/cmp.c index dbfa4be35..f495da7d2 100644 --- a/editors/cmp.c +++ b/editors/cmp.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright (C) 2000,2001 by Matt Kraai <kraai@alumni.carnegiemellon.edu> | 5 | * Copyright (C) 2000,2001 by Matt Kraai <kraai@alumni.carnegiemellon.edu> |
6 | * | 6 | * |
7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | /* BB_AUDIT SUSv3 (virtually) compliant -- uses nicer GNU format for -l. */ | 10 | /* BB_AUDIT SUSv3 (virtually) compliant -- uses nicer GNU format for -l. */ |
diff --git a/editors/diff.c b/editors/diff.c index a3ca2b660..77e8f1d07 100644 --- a/editors/diff.c +++ b/editors/diff.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * Agency (DARPA) and Air Force Research Laboratory, Air Force | 10 | * Agency (DARPA) and Air Force Research Laboratory, Air Force |
11 | * Materiel Command, USAF, under agreement number F39502-99-1-0512. | 11 | * Materiel Command, USAF, under agreement number F39502-99-1-0512. |
12 | * | 12 | * |
13 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 13 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
14 | */ | 14 | */ |
15 | 15 | ||
16 | /* | 16 | /* |
diff --git a/editors/patch_bbox.c b/editors/patch_bbox.c index 62477af16..78aa5fde8 100644 --- a/editors/patch_bbox.c +++ b/editors/patch_bbox.c | |||
@@ -1,22 +1,22 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * busybox patch applet to handle the unified diff format. | 3 | * busybox patch applet to handle the unified diff format. |
4 | * Copyright (C) 2003 Glenn McGrath | 4 | * Copyright (C) 2003 Glenn McGrath |
5 | * | 5 | * |
6 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. | 6 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
7 | * | 7 | * |
8 | * This applet is written to work with patches generated by GNU diff, | 8 | * This applet is written to work with patches generated by GNU diff, |
9 | * where there is equivalent functionality busybox patch shall behave | 9 | * where there is equivalent functionality busybox patch shall behave |
10 | * as per GNU patch. | 10 | * as per GNU patch. |
11 | * | 11 | * |
12 | * There is a SUSv3 specification for patch, however it looks to be | 12 | * There is a SUSv3 specification for patch, however it looks to be |
13 | * incomplete, it doesnt even mention unified diff format. | 13 | * incomplete, it doesnt even mention unified diff format. |
14 | * http://www.opengroup.org/onlinepubs/007904975/utilities/patch.html | 14 | * http://www.opengroup.org/onlinepubs/007904975/utilities/patch.html |
15 | * | 15 | * |
16 | * Issues | 16 | * Issues |
17 | * - Non-interactive | 17 | * - Non-interactive |
18 | * - Patches must apply cleanly or patch (not just one hunk) will fail. | 18 | * - Patches must apply cleanly or patch (not just one hunk) will fail. |
19 | * - Reject file isnt saved | 19 | * - Reject file isnt saved |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #include "libbb.h" | 22 | #include "libbb.h" |
diff --git a/editors/sed.c b/editors/sed.c index 6cf54afe9..8d9f7b25b 100644 --- a/editors/sed.c +++ b/editors/sed.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * | 10 | * |
11 | * MAINTAINER: Rob Landley <rob@landley.net> | 11 | * MAINTAINER: Rob Landley <rob@landley.net> |
12 | * | 12 | * |
13 | * Licensed under GPL version 2, see file LICENSE in this tarball for details. | 13 | * Licensed under GPLv2, see file LICENSE in this source tree. |
14 | */ | 14 | */ |
15 | 15 | ||
16 | /* Code overview. | 16 | /* Code overview. |
diff --git a/editors/vi.c b/editors/vi.c index 73e095cf8..602fc61d9 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * tiny vi.c: A small 'vi' clone | 3 | * tiny vi.c: A small 'vi' clone |
4 | * Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com> | 4 | * Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com> |
5 | * | 5 | * |
6 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. | 6 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
7 | */ | 7 | */ |
8 | 8 | ||
9 | /* | 9 | /* |