diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-02-19 00:14:42 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-02-19 00:14:42 +0000 |
commit | f73d7b6a3a729adccb465813c39f6b2bee580917 (patch) | |
tree | 7f3806f07915e472993f36ab2eebca20d6133042 /test/string | |
parent | 3a6d1e638c18d2eaade419dbefaf37e41fe3f19c (diff) |
Fix problems with test wrapper and test compiler selection.
Diffstat (limited to 'test/string')
-rw-r--r-- | test/string/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/string/Makefile b/test/string/Makefile index 0c3af9e03..1cf768222 100644 --- a/test/string/Makefile +++ b/test/string/Makefile @@ -77,8 +77,8 @@ strsignal: ../../string/strsignal.c -@ echo " " -@ echo "Compiling vs uClibc: " -@ echo " " - $(CC) $(CFLAGS) -DCHECK_BUF -c $< -o $@.o - $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) + $(TESTCC) $(CFLAGS) -DCHECK_BUF -c $< -o $@.o + $(TESTCC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) $(STRIPTOOL) -x -R .note -R .comment $@ -./$@ -@ echo " " |