diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/Kbuild.src | 2 | ||||
-rw-r--r-- | shell/ash.c | 2 | ||||
-rw-r--r-- | shell/ash_ptr_hack.c | 2 | ||||
-rw-r--r-- | shell/bbsh.c | 2 | ||||
-rw-r--r-- | shell/cttyhack.c | 4 | ||||
-rw-r--r-- | shell/hush.c | 2 | ||||
-rw-r--r-- | shell/match.c | 2 | ||||
-rw-r--r-- | shell/math.c | 2 | ||||
-rw-r--r-- | shell/random.c | 2 | ||||
-rw-r--r-- | shell/random.h | 2 | ||||
-rw-r--r-- | shell/shell_common.c | 2 | ||||
-rw-r--r-- | shell/shell_common.h | 2 |
12 files changed, 13 insertions, 13 deletions
diff --git a/shell/Kbuild.src b/shell/Kbuild.src index a669bdf..c00aec9 100644 --- a/shell/Kbuild.src +++ b/shell/Kbuild.src @@ -2,7 +2,7 @@ # # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org> # -# Licensed under the GPL v2, see the file LICENSE in this tarball. +# Licensed under GPLv2, see file LICENSE in this source tree. lib-y:= diff --git a/shell/ash.c b/shell/ash.c index 4fbae24..c8e7e3b 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -13,7 +13,7 @@ * Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au> * was re-ported from NetBSD and debianized. * - * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. + * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ /* diff --git a/shell/ash_ptr_hack.c b/shell/ash_ptr_hack.c index 68d9072..f698408 100644 --- a/shell/ash_ptr_hack.c +++ b/shell/ash_ptr_hack.c @@ -2,7 +2,7 @@ /* * Copyright (C) 2008 by Denys Vlasenko <vda.linux@googlemail.com> * - * Licensed under GPLv2, see file LICENSE in this tarball for details. + * Licensed under GPLv2, see file LICENSE in this source tree. */ struct globals_misc; diff --git a/shell/bbsh.c b/shell/bbsh.c index 83132f9..8e25db4 100644 --- a/shell/bbsh.c +++ b/shell/bbsh.c @@ -4,7 +4,7 @@ * * Copyright 2006 Rob Landley <rob@landley.net> * - * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. + * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ // A section of code that gets repeatedly or conditionally executed is stored diff --git a/shell/cttyhack.c b/shell/cttyhack.c index 7a5e1ff..d1cb7fc 100644 --- a/shell/cttyhack.c +++ b/shell/cttyhack.c @@ -1,8 +1,8 @@ /* vi: set sw=4 ts=4: */ /* - * Licensed under GPLv2 - * * Copyright (c) 2007 Denys Vlasenko <vda.linux@googlemail.com> + * + * Licensed under GPLv2, see file LICENSE in this source tree. */ #include "libbb.h" diff --git a/shell/hush.c b/shell/hush.c index df40589..e8dfb24 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -79,7 +79,7 @@ * $ "export" i=`echo 'aaa bbb'`; echo "$i" * aaa * - * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. + * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ #include <malloc.h> /* for malloc_trim */ diff --git a/shell/match.c b/shell/match.c index fb6a38e..8b1ddac 100644 --- a/shell/match.c +++ b/shell/match.c @@ -4,7 +4,7 @@ * This code is derived from software contributed to Berkeley by * Kenneth Almquist. * - * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. + * Licensed under GPLv2 or later, see file LICENSE in this source tree. * * Copyright (c) 1989, 1991, 1993, 1994 * The Regents of the University of California. All rights reserved. diff --git a/shell/math.c b/shell/math.c index 91fb28f..f0cc2e3 100644 --- a/shell/math.c +++ b/shell/math.c @@ -23,7 +23,7 @@ * rewrote arith (see notes to this), added locale support, * rewrote dynamic variables. * - * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. + * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ /* Copyright (c) 2001 Aaron Lehmann <aaronl@vitelus.com> diff --git a/shell/random.c b/shell/random.c index 7f5821c..853ab08 100644 --- a/shell/random.c +++ b/shell/random.c @@ -4,7 +4,7 @@ * * Copyright (C) 2009 Denys Vlasenko * - * Licensed under GPLv2, see file LICENSE in this tarball for details. + * Licensed under GPLv2, see file LICENSE in this source tree. */ #include "libbb.h" #include "random.h" diff --git a/shell/random.h b/shell/random.h index 0856340..180c48a 100644 --- a/shell/random.h +++ b/shell/random.h @@ -4,7 +4,7 @@ * * Copyright (C) 2009 Denys Vlasenko * - * Licensed under GPLv2, see file LICENSE in this tarball for details. + * Licensed under GPLv2, see file LICENSE in this source tree. */ #ifndef SHELL_RANDOM_H #define SHELL_RANDOM_H 1 diff --git a/shell/shell_common.c b/shell/shell_common.c index dc363e2..9345005 100644 --- a/shell/shell_common.c +++ b/shell/shell_common.c @@ -14,7 +14,7 @@ * Copyright (c) 2010 Denys Vlasenko * Split from ash.c * - * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. + * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ #include "libbb.h" #include "shell_common.h" diff --git a/shell/shell_common.h b/shell/shell_common.h index 1e9f6a6..f06bc41 100644 --- a/shell/shell_common.h +++ b/shell/shell_common.h @@ -14,7 +14,7 @@ * Copyright (c) 2010 Denys Vlasenko * Split from ash.c * - * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. + * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ #ifndef SHELL_COMMON_H #define SHELL_COMMON_H 1 |