svn commit: trunk/busybox: coreutils debianutils findutils libbb lo etc...

aldot at busybox.net aldot at busybox.net
Wed Sep 13 16:39:20 UTC 2006


Author: aldot
Date: 2006-09-13 09:39:19 -0700 (Wed, 13 Sep 2006)
New Revision: 16113

Log:
- fix copy'n paste errors that got introduced when switching to the shorter boilerplate.
  No object code changes.


Modified:
   trunk/busybox/coreutils/sum.c
   trunk/busybox/debianutils/readlink.c
   trunk/busybox/debianutils/run_parts.c
   trunk/busybox/debianutils/which.c
   trunk/busybox/findutils/grep.c
   trunk/busybox/libbb/bb_pwd.c
   trunk/busybox/libbb/find_pid_by_name.c
   trunk/busybox/libbb/llist.c
   trunk/busybox/loginutils/su.c
   trunk/busybox/procps/pidof.c
   trunk/busybox/procps/ps.c
   trunk/busybox/util-linux/swaponoff.c


Changeset:
Modified: trunk/busybox/coreutils/sum.c
===================================================================
--- trunk/busybox/coreutils/sum.c	2006-09-13 15:42:47 UTC (rev 16112)
+++ trunk/busybox/coreutils/sum.c	2006-09-13 16:39:19 UTC (rev 16113)
@@ -10,7 +10,7 @@
  * Written by Kayvan Aghaiepour and David MacKenzie
  * Taken from coreutils and turned into a busybox applet by Mike Frysinger
  *
- * Licensed under the GPL v2, see the file LICENSE in this tarball.
+ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  */
 
 #include "busybox.h"

Modified: trunk/busybox/debianutils/readlink.c
===================================================================
--- trunk/busybox/debianutils/readlink.c	2006-09-13 15:42:47 UTC (rev 16112)
+++ trunk/busybox/debianutils/readlink.c	2006-09-13 16:39:19 UTC (rev 16113)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 2000,2001 Matt Kraai <kraai at alumni.carnegiemellon.edu>
  *
- * Licensed under GPL v2, see file LICENSE in this tarball for details.
+ * Licensed under GPL v2 or later, see file LICENSE in this tarball for details.
  */
 
 #include "busybox.h"

Modified: trunk/busybox/debianutils/run_parts.c
===================================================================
--- trunk/busybox/debianutils/run_parts.c	2006-09-13 15:42:47 UTC (rev 16112)
+++ trunk/busybox/debianutils/run_parts.c	2006-09-13 16:39:19 UTC (rev 16113)
@@ -10,7 +10,7 @@
  *   Copyright (C) 1996-1999 Guy Maor <maor at debian.org>
  *
  *
- * Licensed under GPL v2, see file LICENSE in this tarball for details.
+ * Licensed under GPL v2 or later, see file LICENSE in this tarball for details.
  */
 
 /* This is my first attempt to write a program in C (well, this is my first

Modified: trunk/busybox/debianutils/which.c
===================================================================
--- trunk/busybox/debianutils/which.c	2006-09-13 15:42:47 UTC (rev 16112)
+++ trunk/busybox/debianutils/which.c	2006-09-13 16:39:19 UTC (rev 16113)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen at codepoet.org>
  *
- * Licensed under the GPL v2, see the file LICENSE in this tarball.
+ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  *
  * Based on which from debianutils
  */

Modified: trunk/busybox/findutils/grep.c
===================================================================
--- trunk/busybox/findutils/grep.c	2006-09-13 15:42:47 UTC (rev 16112)
+++ trunk/busybox/findutils/grep.c	2006-09-13 16:39:19 UTC (rev 16113)
@@ -5,7 +5,7 @@
  * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
  * Copyright (C) 1999,2000,2001 by Mark Whitley <markw at codepoet.org>
  *
- * Licensed under the GPL v2, see the file LICENSE in this tarball.
+ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  */
 /* BB_AUDIT SUSv3 defects - unsupported option -x.  */
 /* BB_AUDIT GNU defects - always acts as -a.  */

Modified: trunk/busybox/libbb/bb_pwd.c
===================================================================
--- trunk/busybox/libbb/bb_pwd.c	2006-09-13 15:42:47 UTC (rev 16112)
+++ trunk/busybox/libbb/bb_pwd.c	2006-09-13 16:39:19 UTC (rev 16113)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen at codepoet.org>
  *
- * Licensed under the GPL v2, see the file LICENSE in this tarball.
+ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  */
 
 

Modified: trunk/busybox/libbb/find_pid_by_name.c
===================================================================
--- trunk/busybox/libbb/find_pid_by_name.c	2006-09-13 15:42:47 UTC (rev 16112)
+++ trunk/busybox/libbb/find_pid_by_name.c	2006-09-13 16:39:19 UTC (rev 16113)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen at codepoet.org>
  *
- * Licensed under the GPL v2, see the file LICENSE in this tarball.
+ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  */
 
 #include <stdio.h>

Modified: trunk/busybox/libbb/llist.c
===================================================================
--- trunk/busybox/libbb/llist.c	2006-09-13 15:42:47 UTC (rev 16112)
+++ trunk/busybox/libbb/llist.c	2006-09-13 16:39:19 UTC (rev 16113)
@@ -7,7 +7,7 @@
  * Copyright (C) 2005 Bernhard Fischer
  * Copyright (C) 2006 Rob Landley <rob at landley.net>
  *
- * Licensed under the GPL v2, see the file LICENSE in this tarball.
+ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  */
 
 #include <stdlib.h>

Modified: trunk/busybox/loginutils/su.c
===================================================================
--- trunk/busybox/loginutils/su.c	2006-09-13 15:42:47 UTC (rev 16112)
+++ trunk/busybox/loginutils/su.c	2006-09-13 16:39:19 UTC (rev 16113)
@@ -2,7 +2,7 @@
 /*
  *  Mini su implementation for busybox
  *
- *  Licensed under the GPL v2, see the file LICENSE in this tarball.
+ *  Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  */
 
 #include "busybox.h"

Modified: trunk/busybox/procps/pidof.c
===================================================================
--- trunk/busybox/procps/pidof.c	2006-09-13 15:42:47 UTC (rev 16112)
+++ trunk/busybox/procps/pidof.c	2006-09-13 16:39:19 UTC (rev 16113)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen at codepoet.org>
  *
- * Licensed under the GPL v2, see the file LICENSE in this tarball.
+ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  */
 
 #include "busybox.h"

Modified: trunk/busybox/procps/ps.c
===================================================================
--- trunk/busybox/procps/ps.c	2006-09-13 15:42:47 UTC (rev 16112)
+++ trunk/busybox/procps/ps.c	2006-09-13 16:39:19 UTC (rev 16113)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen at codepoet.org>
  *
- * Licensed under the GPL v2, see the file LICENSE in this tarball.
+ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  */
 
 #include "busybox.h"

Modified: trunk/busybox/util-linux/swaponoff.c
===================================================================
--- trunk/busybox/util-linux/swaponoff.c	2006-09-13 15:42:47 UTC (rev 16112)
+++ trunk/busybox/util-linux/swaponoff.c	2006-09-13 16:39:19 UTC (rev 16113)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen at codepoet.org>
  *
- * Licensed under the GPL v2, see the file LICENSE in this tarball.
+ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  */
 
 #include "busybox.h"




More information about the busybox-cvs mailing list