From 2c8e931c67ebec7acbabd2c9a07096632398bfae Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 4 Nov 2000 23:15:45 +0000 Subject: Make spelling of uClibc be consistant. --- Makefile | 2 +- Rules.mak | 2 +- include/features.h | 2 +- libc/inet/Makefile | 2 +- libc/inet/rpc/Makefile | 2 +- libc/misc/Makefile | 2 +- libc/misc/assert/Makefile | 2 +- libc/misc/ctype/Makefile | 2 +- libc/misc/ctype/ctype.c | 2 +- libc/misc/fnmatch/Makefile | 2 +- libc/misc/glob/Makefile | 2 +- libc/misc/internals/Makefile | 2 +- libc/misc/lock/Makefile | 2 +- libc/misc/lsearch/Makefile | 2 +- libc/misc/mntent/Makefile | 2 +- libc/misc/regex/Makefile | 2 +- libc/misc/syslog/Makefile | 2 +- libc/misc/time/Makefile | 2 +- libc/pwd_grp/Makefile | 2 +- libc/signal/Makefile | 2 +- libc/stdio/Makefile | 2 +- libc/stdio/getdelim.c | 2 +- libc/stdio/getline.c | 2 +- libc/stdlib/Makefile | 2 +- libc/stdlib/abort.c | 2 +- libc/stdlib/malloc-simple/Makefile | 2 +- libc/stdlib/malloc/Makefile | 2 +- libc/string/Makefile | 2 +- libc/string/strsignal.c | 2 +- libc/sysdeps/Makefile | 2 +- libc/sysdeps/README | 6 +++--- libc/sysdeps/linux/Makefile | 2 +- libc/sysdeps/linux/README | 4 ++-- libc/sysdeps/linux/arm/Makefile | 2 +- libc/sysdeps/linux/common/Makefile | 2 +- libc/sysdeps/linux/common/mkfifo.c | 2 +- libc/sysdeps/linux/common/syscalls.c | 2 +- libc/sysdeps/linux/i386/Makefile | 2 +- libc/termios/Makefile | 2 +- libc/unistd/Makefile | 2 +- test/Makefile | 2 +- test/assert/Makefile | 2 +- test/ctype/Makefile | 2 +- test/pwd_grp/Makefile | 4 ++-- test/signal/Makefile | 2 +- test/signal/signal.c | 2 +- test/silly/Makefile | 2 +- test/stdlib/Makefile | 2 +- test/string/Makefile | 4 ++-- test/unistd/Makefile | 2 +- test/unistd/fork.c | 2 +- 51 files changed, 56 insertions(+), 56 deletions(-) diff --git a/Makefile b/Makefile index 7a40090d5..ef9b7c1b4 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/Rules.mak b/Rules.mak index 419f25bbb..ee07e50bf 100644 --- a/Rules.mak +++ b/Rules.mak @@ -1,4 +1,4 @@ -# Rules.make for uCLibc +# Rules.make for uClibc # # This file contains rules which are shared between multiple Makefiles. # All normal configuration options live in the file named "Config". diff --git a/include/features.h b/include/features.h index 119fd9215..5a3a25e57 100644 --- a/include/features.h +++ b/include/features.h @@ -3,7 +3,7 @@ #define __FEATURES_H -/* Major and minor version number of the uCLibc library package. Use +/* Major and minor version number of the uClibc library package. Use these macros to test for features in specific releases. */ #define __UCLIBC__ 0 #define __UCLIBC_MAJOR__ 9 diff --git a/libc/inet/Makefile b/libc/inet/Makefile index 1e9ac365d..9a7e0dabc 100644 --- a/libc/inet/Makefile +++ b/libc/inet/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/inet/rpc/Makefile b/libc/inet/rpc/Makefile index d62851ea9..99172dfe8 100644 --- a/libc/inet/rpc/Makefile +++ b/libc/inet/rpc/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/misc/Makefile b/libc/misc/Makefile index dcd40319c..60e2e2b12 100644 --- a/libc/misc/Makefile +++ b/libc/misc/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/misc/assert/Makefile b/libc/misc/assert/Makefile index 75f613b7e..c47d85901 100644 --- a/libc/misc/assert/Makefile +++ b/libc/misc/assert/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/misc/ctype/Makefile b/libc/misc/ctype/Makefile index c77d49f69..02cfc9434 100644 --- a/libc/misc/ctype/Makefile +++ b/libc/misc/ctype/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/misc/ctype/ctype.c b/libc/misc/ctype/ctype.c index 1063f443d..c7cceada6 100644 --- a/libc/misc/ctype/ctype.c +++ b/libc/misc/ctype/ctype.c @@ -2,7 +2,7 @@ * Character classification and conversion * Copyright (C) 2000 Lineo, Inc. * Written by Erik Andersen - * This file is part of the uC-Libc C library and is distributed + * This file is part of the uClibc C library and is distributed * under the GNU Library General Public License. */ diff --git a/libc/misc/fnmatch/Makefile b/libc/misc/fnmatch/Makefile index 1554d7c00..faf058f33 100644 --- a/libc/misc/fnmatch/Makefile +++ b/libc/misc/fnmatch/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/misc/glob/Makefile b/libc/misc/glob/Makefile index 864eff110..c4ed8613d 100644 --- a/libc/misc/glob/Makefile +++ b/libc/misc/glob/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/misc/internals/Makefile b/libc/misc/internals/Makefile index a09395962..40a6c9149 100644 --- a/libc/misc/internals/Makefile +++ b/libc/misc/internals/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/misc/lock/Makefile b/libc/misc/lock/Makefile index e319c11df..206ff668f 100644 --- a/libc/misc/lock/Makefile +++ b/libc/misc/lock/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/misc/lsearch/Makefile b/libc/misc/lsearch/Makefile index 8e8fc690a..5dc1987d6 100644 --- a/libc/misc/lsearch/Makefile +++ b/libc/misc/lsearch/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/misc/mntent/Makefile b/libc/misc/mntent/Makefile index 4c60ac1e7..22915b161 100644 --- a/libc/misc/mntent/Makefile +++ b/libc/misc/mntent/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/misc/regex/Makefile b/libc/misc/regex/Makefile index 38b7e98bf..9c6d84851 100644 --- a/libc/misc/regex/Makefile +++ b/libc/misc/regex/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/misc/syslog/Makefile b/libc/misc/syslog/Makefile index 9b02fe86c..83294814b 100644 --- a/libc/misc/syslog/Makefile +++ b/libc/misc/syslog/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/misc/time/Makefile b/libc/misc/time/Makefile index 70ee192c4..f053d24d9 100644 --- a/libc/misc/time/Makefile +++ b/libc/misc/time/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/pwd_grp/Makefile b/libc/pwd_grp/Makefile index cc0ff909a..15c2b340b 100644 --- a/libc/pwd_grp/Makefile +++ b/libc/pwd_grp/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/signal/Makefile b/libc/signal/Makefile index 8d21168a1..d1fd660fa 100644 --- a/libc/signal/Makefile +++ b/libc/signal/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/stdio/Makefile b/libc/stdio/Makefile index 5b0b16132..625a77ac3 100644 --- a/libc/stdio/Makefile +++ b/libc/stdio/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/stdio/getdelim.c b/libc/stdio/getdelim.c index f8341cb0d..8790b5f88 100644 --- a/libc/stdio/getdelim.c +++ b/libc/stdio/getdelim.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * getdelim for uclibc + * getdelim for uClibc * * Copyright (C) 2000 by Lineo, inc. Written by Erik Andersen * , diff --git a/libc/stdio/getline.c b/libc/stdio/getline.c index 38440e1bf..64fe4ec66 100644 --- a/libc/stdio/getline.c +++ b/libc/stdio/getline.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * getline for uclibc + * getline for uClibc * * Copyright (C) 2000 by Lineo, inc. Written by Erik Andersen * , diff --git a/libc/stdlib/Makefile b/libc/stdlib/Makefile index 71b2880d2..948e8f00d 100644 --- a/libc/stdlib/Makefile +++ b/libc/stdlib/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/stdlib/abort.c b/libc/stdlib/abort.c index 5fb8be599..6806a8b55 100644 --- a/libc/stdlib/abort.c +++ b/libc/stdlib/abort.c @@ -16,7 +16,7 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* Hacked up for uC-Libc by Erik Andersen */ +/* Hacked up for uClibc by Erik Andersen */ #include #include diff --git a/libc/stdlib/malloc-simple/Makefile b/libc/stdlib/malloc-simple/Makefile index decd2edb2..3e607eac3 100644 --- a/libc/stdlib/malloc-simple/Makefile +++ b/libc/stdlib/malloc-simple/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/stdlib/malloc/Makefile b/libc/stdlib/malloc/Makefile index c86e4f0ea..0c5984192 100644 --- a/libc/stdlib/malloc/Makefile +++ b/libc/stdlib/malloc/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/string/Makefile b/libc/string/Makefile index 107b787ef..0e4e8c462 100644 --- a/libc/string/Makefile +++ b/libc/string/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/string/strsignal.c b/libc/string/strsignal.c index 91895a8ae..4cadb144a 100644 --- a/libc/string/strsignal.c +++ b/libc/string/strsignal.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* Copyright (C) 2000 Erik Andersen , - * This file is part of the uC-Linux and is distributed under the + * This file is part of the uClinux and is distributed under the * GNU Library General Public License. */ diff --git a/libc/sysdeps/Makefile b/libc/sysdeps/Makefile index 45a34a25e..939edb739 100644 --- a/libc/sysdeps/Makefile +++ b/libc/sysdeps/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/sysdeps/README b/libc/sysdeps/README index ca9cb29f0..64484336b 100644 --- a/libc/sysdeps/README +++ b/libc/sysdeps/README @@ -1,6 +1,6 @@ This directory level abstracts out the UN*X-like Operating System dependent -features of uC-Libc for all UN*X-like operating systems. If you wanted to port -uC-Libc to some other UN*X-like OS, this is the place to add that support. +features of uClibc for all UN*X-like operating systems. If you wanted to port +uClibc to some other UN*X-like OS, this is the place to add that support. -If you want to port uC-Libc to support some non-UN*X-like Operating System, you +If you want to port uClibc to support some non-UN*X-like Operating System, you should probably stop using crack. It is bad for you. ;-) diff --git a/libc/sysdeps/linux/Makefile b/libc/sysdeps/linux/Makefile index 7962fabdb..37f1c65be 100644 --- a/libc/sysdeps/linux/Makefile +++ b/libc/sysdeps/linux/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/sysdeps/linux/README b/libc/sysdeps/linux/README index 52eb09254..4a7e4d2f0 100644 --- a/libc/sysdeps/linux/README +++ b/libc/sysdeps/linux/README @@ -1,6 +1,6 @@ This directory level abstracts out the Linux Operating System dependent -features of uC-Libc for suported Linux architectures/CPUs. If you wanted to -port uC-Libc to some new Linux architecture (arm, mips, etc), this is the place +features of uClibc for suported Linux architectures/CPUs. If you wanted to +port uClibc to some new Linux architecture (arm, mips, etc), this is the place to add that support. All the common stuff that is not at all dependent on a particular Linux architecture diff --git a/libc/sysdeps/linux/arm/Makefile b/libc/sysdeps/linux/arm/Makefile index bd789669e..53fc249c3 100644 --- a/libc/sysdeps/linux/arm/Makefile +++ b/libc/sysdeps/linux/arm/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/sysdeps/linux/common/Makefile b/libc/sysdeps/linux/common/Makefile index 8d2b93830..1fd26fab8 100644 --- a/libc/sysdeps/linux/common/Makefile +++ b/libc/sysdeps/linux/common/Makefile @@ -1,5 +1,5 @@ # Copyright (C) 1995,1996 Robert de Bath -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/sysdeps/linux/common/mkfifo.c b/libc/sysdeps/linux/common/mkfifo.c index 876f36b5a..975798a06 100644 --- a/libc/sysdeps/linux/common/mkfifo.c +++ b/libc/sysdeps/linux/common/mkfifo.c @@ -16,7 +16,7 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - June 28, 2000 -- swiped from GNU libc 2.1.3 and adjusted for uC-Libc + June 28, 2000 -- swiped from GNU libc 2.1.3 and adjusted for uClibc by Erik Andersen */ diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c index 6b18c356d..a57eccdf5 100644 --- a/libc/sysdeps/linux/common/syscalls.c +++ b/libc/sysdeps/linux/common/syscalls.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * Syscalls for uC-Libc + * Syscalls for uClibc * * Copyright (C) 2000 by Lineo, inc. Written by Erik Andersen * , diff --git a/libc/sysdeps/linux/i386/Makefile b/libc/sysdeps/linux/i386/Makefile index b75c4dd72..9215704c4 100644 --- a/libc/sysdeps/linux/i386/Makefile +++ b/libc/sysdeps/linux/i386/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/termios/Makefile b/libc/termios/Makefile index 2ed6b7c5f..5d921c9c9 100644 --- a/libc/termios/Makefile +++ b/libc/termios/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/libc/unistd/Makefile b/libc/unistd/Makefile index db8c0c019..375c4c8af 100644 --- a/libc/unistd/Makefile +++ b/libc/unistd/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/test/Makefile b/test/Makefile index 6f6d06fd7..426d0a4a3 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,4 +1,4 @@ -# Makefile for uCLibc +# Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. # diff --git a/test/assert/Makefile b/test/assert/Makefile index 1a89272bf..807a01a7b 100644 --- a/test/assert/Makefile +++ b/test/assert/Makefile @@ -26,7 +26,7 @@ all: $(TARGETS) assert: assert.c Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Compiling vs uCLibc: " + -@ echo "Compiling vs uClibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) diff --git a/test/ctype/Makefile b/test/ctype/Makefile index 9bd6af242..f8992f4fe 100644 --- a/test/ctype/Makefile +++ b/test/ctype/Makefile @@ -26,7 +26,7 @@ all: $(TARGETS) ctype: ctype.c ../testsuite.h Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Compiling vs uCLibc: " + -@ echo "Compiling vs uClibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) diff --git a/test/pwd_grp/Makefile b/test/pwd_grp/Makefile index 5ec3b5f05..0ae2e233d 100644 --- a/test/pwd_grp/Makefile +++ b/test/pwd_grp/Makefile @@ -28,7 +28,7 @@ all: $(TARGETS) test_pwd: test_pwd.c Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Compiling vs uCLibc: " + -@ echo "Compiling vs uClibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) @@ -48,7 +48,7 @@ test_pwd_glibc: test_pwd.c Makefile $(TOPDIR)libc.a test_grp: test_grp.c Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Compiling vs uCLibc: " + -@ echo "Compiling vs uClibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) diff --git a/test/signal/Makefile b/test/signal/Makefile index 67fcc9fb0..649a7dffd 100644 --- a/test/signal/Makefile +++ b/test/signal/Makefile @@ -26,7 +26,7 @@ all: $(TARGETS) signal: signal.c Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Compiling vs uCLibc: " + -@ echo "Compiling vs uClibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) diff --git a/test/signal/signal.c b/test/signal/signal.c index 9198af5f6..028a34f67 100644 --- a/test/signal/signal.c +++ b/test/signal/signal.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * signal testing function for uC-Libc + * signal testing function for uClibc * * Copyright (C) 2000 by Lineo, inc. * Written by Erik Andersen , diff --git a/test/silly/Makefile b/test/silly/Makefile index 196e8a385..426882043 100644 --- a/test/silly/Makefile +++ b/test/silly/Makefile @@ -34,7 +34,7 @@ hello_source: hello: hello.c Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Compiling vs uC-Libc: " + -@ echo "Compiling vs uClibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) diff --git a/test/stdlib/Makefile b/test/stdlib/Makefile index 12ad870eb..424b0ba88 100644 --- a/test/stdlib/Makefile +++ b/test/stdlib/Makefile @@ -35,7 +35,7 @@ testmalloc_source: testmalloc: testmalloc.c Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Compiling vs uC-Libc: " + -@ echo "Compiling vs uClibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) diff --git a/test/string/Makefile b/test/string/Makefile index ddba98132..a771f3638 100644 --- a/test/string/Makefile +++ b/test/string/Makefile @@ -27,7 +27,7 @@ all: $(TARGETS) string: string.c Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Compiling vs uCLibc: " + -@ echo "Compiling vs uClibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) @@ -47,7 +47,7 @@ string_glibc: string.c Makefile $(TOPDIR)libc.a testcopy: testcopy.c Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Compiling vs uCLibc: " + -@ echo "Compiling vs uClibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) diff --git a/test/unistd/Makefile b/test/unistd/Makefile index a19905e3b..27551a873 100644 --- a/test/unistd/Makefile +++ b/test/unistd/Makefile @@ -26,7 +26,7 @@ all: $(TARGETS) fork: fork.c ../testsuite.h Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Compiling vs uCLibc: " + -@ echo "Compiling vs uClibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) diff --git a/test/unistd/fork.c b/test/unistd/fork.c index 4192af5d2..c85c335c6 100644 --- a/test/unistd/fork.c +++ b/test/unistd/fork.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * fork test for uclibc + * fork test for uClibc * * Copyright (C) 1999,2000 by Lineo, inc. * Written by Erik Andersen , -- cgit v1.2.3