diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-16 03:04:14 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-16 03:04:14 +0200 |
commit | 9768a82eb0ef8b742034d2b22c32e0cc97633604 (patch) | |
tree | fd211c3ad2b09ee0f187fcb7171a415f76649ae9 | |
parent | 3f75d7bfd2c7fc28256f7ce21ee3d8acb7f6a2e1 (diff) | |
download | busybox-w32-9768a82eb0ef8b742034d2b22c32e0cc97633604.tar.gz busybox-w32-9768a82eb0ef8b742034d2b22c32e0cc97633604.tar.bz2 busybox-w32-9768a82eb0ef8b742034d2b22c32e0cc97633604.zip |
*: fix "see file License ..." - the file is named LICENSE (in uppercase)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | applets/applet_tables.c | 2 | ||||
-rw-r--r-- | applets/applets.c | 2 | ||||
-rw-r--r-- | coreutils/cat.c | 2 | ||||
-rw-r--r-- | coreutils/tac.c | 2 | ||||
-rw-r--r-- | docs/new-applet-HOWTO.txt | 2 | ||||
-rw-r--r-- | e2fsprogs/old_e2fsprogs/e2fsck.c | 2 | ||||
-rw-r--r-- | include/xregex.h | 2 | ||||
-rw-r--r-- | libbb/appletlib.c | 2 | ||||
-rw-r--r-- | libbb/get_cpu_count.c | 2 | ||||
-rw-r--r-- | libbb/strrstr.c | 2 | ||||
-rw-r--r-- | miscutils/adjtimex.c | 2 | ||||
-rw-r--r-- | miscutils/conspy.c | 2 | ||||
-rw-r--r-- | miscutils/readahead.c | 2 | ||||
-rw-r--r-- | procps/iostat.c | 2 | ||||
-rw-r--r-- | procps/mpstat.c | 2 | ||||
-rw-r--r-- | util-linux/hexdump.c | 2 | ||||
-rw-r--r-- | util-linux/more.c | 2 | ||||
-rw-r--r-- | util-linux/rdate.c | 2 | ||||
-rw-r--r-- | util-linux/rev.c | 2 | ||||
-rw-r--r-- | util-linux/script.c | 2 | ||||
-rw-r--r-- | util-linux/scriptreplay.c | 2 | ||||
-rw-r--r-- | util-linux/setarch.c | 2 |
22 files changed, 22 insertions, 22 deletions
diff --git a/applets/applet_tables.c b/applets/applet_tables.c index 338dc20f9..f56908420 100644 --- a/applets/applet_tables.c +++ b/applets/applet_tables.c | |||
@@ -5,7 +5,7 @@ | |||
5 | * | 5 | * |
6 | * Copyright (C) 2007 Denys Vlasenko <vda.linux@googlemail.com> | 6 | * Copyright (C) 2007 Denys Vlasenko <vda.linux@googlemail.com> |
7 | * | 7 | * |
8 | * Licensed under GPLv2, see file License in this tarball for details. | 8 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include <stdlib.h> | 11 | #include <stdlib.h> |
diff --git a/applets/applets.c b/applets/applets.c index 6a3996272..5a7b88e88 100644 --- a/applets/applets.c +++ b/applets/applets.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright (C) 2007 Denys Vlasenko <vda.linux@googlemail.com> | 5 | * Copyright (C) 2007 Denys Vlasenko <vda.linux@googlemail.com> |
6 | * | 6 | * |
7 | * Licensed under GPLv2, see file License in this tarball for details. | 7 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
8 | */ | 8 | */ |
9 | #include "busybox.h" | 9 | #include "busybox.h" |
10 | 10 | ||
diff --git a/coreutils/cat.c b/coreutils/cat.c index ab682588f..454c46b68 100644 --- a/coreutils/cat.c +++ b/coreutils/cat.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org> | 5 | * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org> |
6 | * | 6 | * |
7 | * Licensed under GPLv2, see file License in this tarball for details. | 7 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | /* BB_AUDIT SUSv3 compliant */ | 10 | /* BB_AUDIT SUSv3 compliant */ |
diff --git a/coreutils/tac.c b/coreutils/tac.c index d70e23ad4..b8db8eaba 100644 --- a/coreutils/tac.c +++ b/coreutils/tac.c | |||
@@ -6,7 +6,7 @@ | |||
6 | * Copyright (C) 2007 Natanael Copa <natanael.copa@gmail.com> | 6 | * Copyright (C) 2007 Natanael Copa <natanael.copa@gmail.com> |
7 | * Copyright (C) 2007 Tito Ragusa <farmatito@tiscali.it> | 7 | * Copyright (C) 2007 Tito Ragusa <farmatito@tiscali.it> |
8 | * | 8 | * |
9 | * Licensed under GPLv2, see file License in this tarball for details. | 9 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
10 | * | 10 | * |
11 | */ | 11 | */ |
12 | 12 | ||
diff --git a/docs/new-applet-HOWTO.txt b/docs/new-applet-HOWTO.txt index 7fbd62ed1..a2c5a49fe 100644 --- a/docs/new-applet-HOWTO.txt +++ b/docs/new-applet-HOWTO.txt | |||
@@ -36,7 +36,7 @@ For a new applet mu, here is the code that would go in mu.c: | |||
36 | * | 36 | * |
37 | * Copyright (C) [YEAR] by [YOUR NAME] <YOUR EMAIL> | 37 | * Copyright (C) [YEAR] by [YOUR NAME] <YOUR EMAIL> |
38 | * | 38 | * |
39 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 39 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
40 | */ | 40 | */ |
41 | 41 | ||
42 | #include "libbb.h" | 42 | #include "libbb.h" |
diff --git a/e2fsprogs/old_e2fsprogs/e2fsck.c b/e2fsprogs/old_e2fsprogs/e2fsck.c index f58fe9286..cf52f51b6 100644 --- a/e2fsprogs/old_e2fsprogs/e2fsck.c +++ b/e2fsprogs/old_e2fsprogs/e2fsck.c | |||
@@ -26,7 +26,7 @@ | |||
26 | * Journal recovery routines for the generic filesystem journaling code; | 26 | * Journal recovery routines for the generic filesystem journaling code; |
27 | * part of the ext2fs journaling system. | 27 | * part of the ext2fs journaling system. |
28 | * | 28 | * |
29 | * Licensed under GPLv2 or later, see file License in this tarball for details. | 29 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
30 | */ | 30 | */ |
31 | 31 | ||
32 | #include "e2fsck.h" /*Put all of our defines here to clean things up*/ | 32 | #include "e2fsck.h" /*Put all of our defines here to clean things up*/ |
diff --git a/include/xregex.h b/include/xregex.h index 61658ed85..44a2297e6 100644 --- a/include/xregex.h +++ b/include/xregex.h | |||
@@ -6,7 +6,7 @@ | |||
6 | * Based in part on code from sash, Copyright (c) 1999 by David I. Bell | 6 | * Based in part on code from sash, Copyright (c) 1999 by David I. Bell |
7 | * Permission has been granted to redistribute this code under the GPL. | 7 | * Permission has been granted to redistribute this code under the GPL. |
8 | * | 8 | * |
9 | * Licensed under GPLv2 or later, see file License in this tarball for details. | 9 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
10 | */ | 10 | */ |
11 | #ifndef BB_REGEX_H | 11 | #ifndef BB_REGEX_H |
12 | #define BB_REGEX_H 1 | 12 | #define BB_REGEX_H 1 |
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index 4924a97c1..800c37448 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c | |||
@@ -9,7 +9,7 @@ | |||
9 | * Based in part on code from sash, Copyright (c) 1999 by David I. Bell | 9 | * Based in part on code from sash, Copyright (c) 1999 by David I. Bell |
10 | * Permission has been granted to redistribute this code under the GPL. | 10 | * Permission has been granted to redistribute this code under the GPL. |
11 | * | 11 | * |
12 | * Licensed under GPLv2 or later, see file License in this tarball for details. | 12 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
13 | */ | 13 | */ |
14 | 14 | ||
15 | /* We are trying to not use printf, this benefits the case when selected | 15 | /* We are trying to not use printf, this benefits the case when selected |
diff --git a/libbb/get_cpu_count.c b/libbb/get_cpu_count.c index a0dcb45f5..edb7e6d37 100644 --- a/libbb/get_cpu_count.c +++ b/libbb/get_cpu_count.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com> | 5 | * Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com> |
6 | * | 6 | * |
7 | * Licensed under GPLv2, see file License in this tarball for details. | 7 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
8 | */ | 8 | */ |
9 | #include "libbb.h" | 9 | #include "libbb.h" |
10 | 10 | ||
diff --git a/libbb/strrstr.c b/libbb/strrstr.c index a803dd983..d201f5172 100644 --- a/libbb/strrstr.c +++ b/libbb/strrstr.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright (C) 2008 Bernhard Reutner-Fischer | 5 | * Copyright (C) 2008 Bernhard Reutner-Fischer |
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 tarball for details. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | #ifdef __DO_STRRSTR_TEST | 10 | #ifdef __DO_STRRSTR_TEST |
diff --git a/miscutils/adjtimex.c b/miscutils/adjtimex.c index c12a10b25..a6f323ba2 100644 --- a/miscutils/adjtimex.c +++ b/miscutils/adjtimex.c | |||
@@ -8,7 +8,7 @@ | |||
8 | * | 8 | * |
9 | * busyboxed 20 March 2001, Larry Doolittle <ldoolitt@recycle.lbl.gov> | 9 | * busyboxed 20 March 2001, Larry Doolittle <ldoolitt@recycle.lbl.gov> |
10 | * | 10 | * |
11 | * Licensed under GPLv2 or later, see file License in this tarball for details. | 11 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #include "libbb.h" | 14 | #include "libbb.h" |
diff --git a/miscutils/conspy.c b/miscutils/conspy.c index a173d8efd..02b13e9c8 100644 --- a/miscutils/conspy.c +++ b/miscutils/conspy.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * Based on Russell Stuart's conspy.c | 7 | * Based on Russell Stuart's conspy.c |
8 | * http://ace-host.stuart.id.au/russell/files/conspy.c | 8 | * http://ace-host.stuart.id.au/russell/files/conspy.c |
9 | * | 9 | * |
10 | * Licensed under GPLv2 or later, see file License in this tarball for details. | 10 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
11 | */ | 11 | */ |
12 | 12 | ||
13 | //applet:IF_CONSPY(APPLET(conspy, _BB_DIR_BIN, _BB_SUID_DROP)) | 13 | //applet:IF_CONSPY(APPLET(conspy, _BB_DIR_BIN, _BB_SUID_DROP)) |
diff --git a/miscutils/readahead.c b/miscutils/readahead.c index f3b21a2fc..e7b75f12f 100644 --- a/miscutils/readahead.c +++ b/miscutils/readahead.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * | 7 | * |
8 | * Copyright (C) 2006 Michael Opdenacker <michael@free-electrons.com> | 8 | * Copyright (C) 2006 Michael Opdenacker <michael@free-electrons.com> |
9 | * | 9 | * |
10 | * Licensed under GPLv2 or later, see file License in this tarball for details. | 10 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
11 | */ | 11 | */ |
12 | 12 | ||
13 | #include "libbb.h" | 13 | #include "libbb.h" |
diff --git a/procps/iostat.c b/procps/iostat.c index e8e321b8d..05c758b6c 100644 --- a/procps/iostat.c +++ b/procps/iostat.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com> | 5 | * Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com> |
6 | * | 6 | * |
7 | * Licensed under GPLv2, see file License in this tarball for details. | 7 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | //applet:IF_IOSTAT(APPLET(iostat, _BB_DIR_BIN, _BB_SUID_DROP)) | 10 | //applet:IF_IOSTAT(APPLET(iostat, _BB_DIR_BIN, _BB_SUID_DROP)) |
diff --git a/procps/mpstat.c b/procps/mpstat.c index b4520cb55..bf0f593f7 100644 --- a/procps/mpstat.c +++ b/procps/mpstat.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com> | 5 | * Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com> |
6 | * | 6 | * |
7 | * Licensed under GPLv2, see file License in this tarball for details. | 7 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | //applet:IF_MPSTAT(APPLET(mpstat, _BB_DIR_BIN, _BB_SUID_DROP)) | 10 | //applet:IF_MPSTAT(APPLET(mpstat, _BB_DIR_BIN, _BB_SUID_DROP)) |
diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c index 7b89e6fdc..3db91113d 100644 --- a/util-linux/hexdump.c +++ b/util-linux/hexdump.c | |||
@@ -6,7 +6,7 @@ | |||
6 | * Copyright (c) 1989 | 6 | * Copyright (c) 1989 |
7 | * The Regents of the University of California. All rights reserved. | 7 | * The Regents of the University of California. All rights reserved. |
8 | * | 8 | * |
9 | * Licensed under GPLv2 or later, see file License in this tarball for details. | 9 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include "libbb.h" | 12 | #include "libbb.h" |
diff --git a/util-linux/more.c b/util-linux/more.c index 9216b6137..00a427a6f 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -11,7 +11,7 @@ | |||
11 | * | 11 | * |
12 | * Termios corrects by Vladimir Oleynik <dzo@simtreas.ru> | 12 | * Termios corrects by Vladimir Oleynik <dzo@simtreas.ru> |
13 | * | 13 | * |
14 | * Licensed under GPLv2 or later, see file License in this tarball for details. | 14 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include "libbb.h" | 17 | #include "libbb.h" |
diff --git a/util-linux/rdate.c b/util-linux/rdate.c index f257d5438..f5df2f794 100644 --- a/util-linux/rdate.c +++ b/util-linux/rdate.c | |||
@@ -5,7 +5,7 @@ | |||
5 | * | 5 | * |
6 | * by Sterling Huxley <sterling@europa.com> | 6 | * by Sterling Huxley <sterling@europa.com> |
7 | * | 7 | * |
8 | * Licensed under GPL v2 or later, see file License for details. | 8 | * Licensed under GPL v2 or later, see file LICENSE for details. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include "libbb.h" | 11 | #include "libbb.h" |
diff --git a/util-linux/rev.c b/util-linux/rev.c index fa3a453ae..8d5ac2f2d 100644 --- a/util-linux/rev.c +++ b/util-linux/rev.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com> | 4 | * Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com> |
5 | * | 5 | * |
6 | * Licensed under GPLv2, see file License in this tarball for details. | 6 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
7 | */ | 7 | */ |
8 | 8 | ||
9 | //applet:IF_REV(APPLET(rev, _BB_DIR_BIN, _BB_SUID_DROP)) | 9 | //applet:IF_REV(APPLET(rev, _BB_DIR_BIN, _BB_SUID_DROP)) |
diff --git a/util-linux/script.c b/util-linux/script.c index c23117cf3..ba90b065d 100644 --- a/util-linux/script.c +++ b/util-linux/script.c | |||
@@ -8,7 +8,7 @@ | |||
8 | * Copyright (c) 1980 | 8 | * Copyright (c) 1980 |
9 | * The Regents of the University of California. All rights reserved. | 9 | * The Regents of the University of California. All rights reserved. |
10 | * | 10 | * |
11 | * Licensed under GPLv2 or later, see file License in this tarball for details. | 11 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
12 | */ | 12 | */ |
13 | #include "libbb.h" | 13 | #include "libbb.h" |
14 | 14 | ||
diff --git a/util-linux/scriptreplay.c b/util-linux/scriptreplay.c index d7e193303..c87e44dfb 100644 --- a/util-linux/scriptreplay.c +++ b/util-linux/scriptreplay.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * pascal.bellard@ads-lu.com | 5 | * pascal.bellard@ads-lu.com |
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 tarball for details. |
8 | * | 8 | * |
9 | */ | 9 | */ |
10 | #include "libbb.h" | 10 | #include "libbb.h" |
diff --git a/util-linux/setarch.c b/util-linux/setarch.c index 8213382e4..776caf909 100644 --- a/util-linux/setarch.c +++ b/util-linux/setarch.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright 2002 Andi Kleen, SuSE Labs. | 5 | * Copyright 2002 Andi Kleen, SuSE Labs. |
6 | * | 6 | * |
7 | * Licensed under GPL v2 or later, see file License for details. | 7 | * Licensed under GPL v2 or later, see file LICENSE for details. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include <sys/personality.h> | 10 | #include <sys/personality.h> |