diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-23 16:28:10 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-23 16:28:10 +0000 |
commit | 545e51be154967ab3e8d82fff5f7c25487076e72 (patch) | |
tree | 24cdc7527b6e430111c26b00fddf66fc3ad91178 /test/unistd | |
parent | bce788f4dc069f977a8e55dd3d69f3fa4a498170 (diff) |
Update tests to be somewhat consistant with the rest of the world
Diffstat (limited to 'test/unistd')
-rw-r--r-- | test/unistd/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unistd/Makefile b/test/unistd/Makefile index b4a959233..f64b5428c 100644 --- a/test/unistd/Makefile +++ b/test/unistd/Makefile @@ -51,8 +51,8 @@ fork_glibc: fork.c ../testsuite.h Makefile -@ echo " " -@ echo "Compiling vs GNU libc: " -@ echo " " - $(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o - $(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@ + $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o + $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@ $(STRIPTOOL) -x -R .note -R .comment $@ -./$@ -@ echo " " @@ -73,8 +73,8 @@ vfork_glibc: vfork.c ../testsuite.h Makefile -@ echo " " -@ echo "Compiling vs GNU libc: " -@ echo " " - $(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o - $(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@ + $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o + $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@ $(STRIPTOOL) -x -R .note -R .comment $@ -./$@ -@ echo " " |