aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-08-16 20:14:46 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-08-16 20:14:46 +0200
commit0ef64bdb40c54681e8dd5ab8df42ac88e4ab1d4a (patch)
treed8a71a3f044857bd36569f535815002367389b29 /shell
parent0d555fc951fa09b2f7efb4b445a468a4bcc262f1 (diff)
downloadbusybox-w32-0ef64bdb40c54681e8dd5ab8df42ac88e4ab1d4a.tar.gz
busybox-w32-0ef64bdb40c54681e8dd5ab8df42ac88e4ab1d4a.tar.bz2
busybox-w32-0ef64bdb40c54681e8dd5ab8df42ac88e4ab1d4a.zip
*: make GNU licensing statement forms more regular
This change retains "or later" state! No licensing _changes_ here, only form is adjusted (article, space between "GPL" and "v2" and so on). Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/Kbuild.src2
-rw-r--r--shell/ash.c2
-rw-r--r--shell/ash_ptr_hack.c2
-rw-r--r--shell/bbsh.c2
-rw-r--r--shell/cttyhack.c4
-rw-r--r--shell/hush.c2
-rw-r--r--shell/match.c2
-rw-r--r--shell/math.c2
-rw-r--r--shell/random.c2
-rw-r--r--shell/random.h2
-rw-r--r--shell/shell_common.c2
-rw-r--r--shell/shell_common.h2
12 files changed, 13 insertions, 13 deletions
diff --git a/shell/Kbuild.src b/shell/Kbuild.src
index a669bdfb0..c00aec92a 100644
--- a/shell/Kbuild.src
+++ b/shell/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
7lib-y:= 7lib-y:=
8 8
diff --git a/shell/ash.c b/shell/ash.c
index 4fbae2498..c8e7e3b06 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -13,7 +13,7 @@
13 * Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au> 13 * Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>
14 * was re-ported from NetBSD and debianized. 14 * was re-ported from NetBSD and debianized.
15 * 15 *
16 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 16 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
17 */ 17 */
18 18
19/* 19/*
diff --git a/shell/ash_ptr_hack.c b/shell/ash_ptr_hack.c
index 68d907292..f69840825 100644
--- a/shell/ash_ptr_hack.c
+++ b/shell/ash_ptr_hack.c
@@ -2,7 +2,7 @@
2/* 2/*
3 * Copyright (C) 2008 by Denys Vlasenko <vda.linux@googlemail.com> 3 * Copyright (C) 2008 by Denys Vlasenko <vda.linux@googlemail.com>
4 * 4 *
5 * Licensed under GPLv2, see file LICENSE in this tarball for details. 5 * Licensed under GPLv2, see file LICENSE in this source tree.
6 */ 6 */
7 7
8struct globals_misc; 8struct globals_misc;
diff --git a/shell/bbsh.c b/shell/bbsh.c
index 83132f928..8e25db458 100644
--- a/shell/bbsh.c
+++ b/shell/bbsh.c
@@ -4,7 +4,7 @@
4 * 4 *
5 * Copyright 2006 Rob Landley <rob@landley.net> 5 * Copyright 2006 Rob Landley <rob@landley.net>
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// A section of code that gets repeatedly or conditionally executed is stored 10// A section of code that gets repeatedly or conditionally executed is stored
diff --git a/shell/cttyhack.c b/shell/cttyhack.c
index 7a5e1ffd2..d1cb7fcc3 100644
--- a/shell/cttyhack.c
+++ b/shell/cttyhack.c
@@ -1,8 +1,8 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * Licensed under GPLv2
4 *
5 * Copyright (c) 2007 Denys Vlasenko <vda.linux@googlemail.com> 3 * Copyright (c) 2007 Denys Vlasenko <vda.linux@googlemail.com>
4 *
5 * Licensed under GPLv2, see file LICENSE in this source tree.
6 */ 6 */
7#include "libbb.h" 7#include "libbb.h"
8 8
diff --git a/shell/hush.c b/shell/hush.c
index df4058998..e8dfb2499 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -79,7 +79,7 @@
79 * $ "export" i=`echo 'aaa bbb'`; echo "$i" 79 * $ "export" i=`echo 'aaa bbb'`; echo "$i"
80 * aaa 80 * aaa
81 * 81 *
82 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 82 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
83 */ 83 */
84#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ 84#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
85#include <malloc.h> /* for malloc_trim */ 85#include <malloc.h> /* for malloc_trim */
diff --git a/shell/match.c b/shell/match.c
index fb6a38ef1..8b1ddacd5 100644
--- a/shell/match.c
+++ b/shell/match.c
@@ -4,7 +4,7 @@
4 * This code is derived from software contributed to Berkeley by 4 * This code is derived from software contributed to Berkeley by
5 * Kenneth Almquist. 5 * Kenneth Almquist.
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 * Copyright (c) 1989, 1991, 1993, 1994 9 * Copyright (c) 1989, 1991, 1993, 1994
10 * The Regents of the University of California. All rights reserved. 10 * The Regents of the University of California. All rights reserved.
diff --git a/shell/math.c b/shell/math.c
index 91fb28f05..f0cc2e35d 100644
--- a/shell/math.c
+++ b/shell/math.c
@@ -23,7 +23,7 @@
23 * rewrote arith (see notes to this), added locale support, 23 * rewrote arith (see notes to this), added locale support,
24 * rewrote dynamic variables. 24 * rewrote dynamic variables.
25 * 25 *
26 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 26 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
27 */ 27 */
28/* Copyright (c) 2001 Aaron Lehmann <aaronl@vitelus.com> 28/* Copyright (c) 2001 Aaron Lehmann <aaronl@vitelus.com>
29 29
diff --git a/shell/random.c b/shell/random.c
index 7f5821cbc..853ab085a 100644
--- a/shell/random.c
+++ b/shell/random.c
@@ -4,7 +4,7 @@
4 * 4 *
5 * Copyright (C) 2009 Denys Vlasenko 5 * Copyright (C) 2009 Denys Vlasenko
6 * 6 *
7 * Licensed under GPLv2, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2, see file LICENSE in this source tree.
8 */ 8 */
9#include "libbb.h" 9#include "libbb.h"
10#include "random.h" 10#include "random.h"
diff --git a/shell/random.h b/shell/random.h
index 08563402c..180c48abb 100644
--- a/shell/random.h
+++ b/shell/random.h
@@ -4,7 +4,7 @@
4 * 4 *
5 * Copyright (C) 2009 Denys Vlasenko 5 * Copyright (C) 2009 Denys Vlasenko
6 * 6 *
7 * Licensed under GPLv2, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2, see file LICENSE in this source tree.
8 */ 8 */
9#ifndef SHELL_RANDOM_H 9#ifndef SHELL_RANDOM_H
10#define SHELL_RANDOM_H 1 10#define SHELL_RANDOM_H 1
diff --git a/shell/shell_common.c b/shell/shell_common.c
index dc363e298..9345005c7 100644
--- a/shell/shell_common.c
+++ b/shell/shell_common.c
@@ -14,7 +14,7 @@
14 * Copyright (c) 2010 Denys Vlasenko 14 * Copyright (c) 2010 Denys Vlasenko
15 * Split from ash.c 15 * Split from ash.c
16 * 16 *
17 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 17 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
18 */ 18 */
19#include "libbb.h" 19#include "libbb.h"
20#include "shell_common.h" 20#include "shell_common.h"
diff --git a/shell/shell_common.h b/shell/shell_common.h
index 1e9f6a691..f06bc4120 100644
--- a/shell/shell_common.h
+++ b/shell/shell_common.h
@@ -14,7 +14,7 @@
14 * Copyright (c) 2010 Denys Vlasenko 14 * Copyright (c) 2010 Denys Vlasenko
15 * Split from ash.c 15 * Split from ash.c
16 * 16 *
17 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 17 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
18 */ 18 */
19#ifndef SHELL_COMMON_H 19#ifndef SHELL_COMMON_H
20#define SHELL_COMMON_H 1 20#define SHELL_COMMON_H 1