From 8e205a2f0435f04b31b91c85b8feeb21b6538852 Mon Sep 17 00:00:00 2001 From: marcel Date: Wed, 13 Aug 2003 03:59:18 +0000 Subject: Don't run verify directly as that would require the perl script to have execute permissions. Run "perl verify" instead. Replace all occurences of the hardcoding of ./verify with $(VERIFY) to allow it to be overridden as well. --- lib/libpthread/test/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib/libpthread/test') diff --git a/lib/libpthread/test/Makefile b/lib/libpthread/test/Makefile index 31c74f7..aec6f3e 100644 --- a/lib/libpthread/test/Makefile +++ b/lib/libpthread/test/Makefile @@ -29,6 +29,7 @@ LDFLAGS_S := LIBS := -lkse # Flags passed to verify. "-v" or "-u" may be useful. +VERIFY = perl verify VFLAGS := all : default @@ -82,21 +83,21 @@ check_a : tests_a @cp $(bin)_a $(bin) .endfor @echo "Test static library:" - @./verify $(VFLAGS) $(CTESTS) $(PTESTS) + @$(VERIFY) $(VFLAGS) $(CTESTS) $(PTESTS) check_p : tests_p .for bin in $(CTESTS) $(BTESTS) @cp $(bin)_p $(bin) .endfor @echo "Test profile library:" - @./verify $(VFLAGS) $(CTESTS) $(PTESTS) + @$(VERIFY) $(VFLAGS) $(CTESTS) $(PTESTS) check_s : tests_s .for bin in $(CTESTS) $(BTESTS) @cp $(bin)_s $(bin) .endfor @echo "Test shared library:" - @./verify $(VFLAGS) $(CTESTS) $(PTESTS) + @$(VERIFY) $(VFLAGS) $(CTESTS) $(PTESTS) check : check_a check_p check_s -- cgit v1.1