From: Garrett C. <ris...@li...> - 2010-06-20 04:38:59
|
The branch, pu, has been updated via b914cb45c1dac557b89618e93719a9f217cfcb1c (commit) from 08e703bbc89cf75fa7a610cf68013bf30df203b4 (commit) - Log ----------------------------------------------------------------- commit b914cb45c1dac557b89618e93719a9f217cfcb1c Author: Garrett Cooper <yan...@gm...> Date: Sat Jun 19 21:36:42 2010 -0700 Don't assume make is GNU make. Signed-off-by: Garrett Cooper <yan...@gm...> ----------------------------------------------------------------------- Summary of changes: testcases/open_posix_testsuite/GNUmakefile | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/testcases/open_posix_testsuite/GNUmakefile b/testcases/open_posix_testsuite/GNUmakefile index b5ff3ca..35d058f 100644 --- a/testcases/open_posix_testsuite/GNUmakefile +++ b/testcases/open_posix_testsuite/GNUmakefile @@ -71,7 +71,7 @@ clean: # Built runnable tests @find $(top_builddir) -iname \*.test | xargs -n 40 rm -f {} @find $(top_builddir) -iname \*~ -o -iname \*.o | xargs -n 40 rm -f {} - @$(foreach DIR,$(FUNCTIONAL_MAKE),make -C $(DIR) clean >> /dev/null 2>&1;) >> /dev/null 2>&1 + @$(foreach DIR,$(FUNCTIONAL_MAKE),$(MAKE) -C $(DIR) clean >> /dev/null 2>&1;) >> /dev/null 2>&1 # Rule to run a build test # If the .o doesn't export main, then we don't need to link @@ -179,7 +179,7 @@ $(top_builddir)/t0.val: $(top_builddir)/t0 # Functional/Stress test build and execution functional-make: - $(foreach DIR,$(FUNCTIONAL_MAKE),make -C $(DIR);) + $(foreach DIR,$(FUNCTIONAL_MAKE),$(MAKE) -C $(DIR);) .PHONY: $(FUNCTIONAL_RUN) @@ -190,7 +190,7 @@ $(FUNCTIONAL_RUN): cd $(PWD) stress-make: - $(foreach DIR,$(STRESS_MAKE),make -C $(DIR);) + $(foreach DIR,$(STRESS_MAKE),$(MAKE) -C $(DIR);) .PHONY: $(STRESS_RUN) hooks/post-receive -- ltp |