[GIT] ppl/ppl(ppl-0_11-branch): Properly quote the assignment MAKE=$(MAKE).

Module: ppl/ppl Branch: ppl-0_11-branch Commit: af113d9ac3779b5bf15531ba4551ed18430b0c75 URL: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=af113d9ac3779...
Author: Roberto Bagnara bagnara@cs.unipr.it Date: Thu Oct 21 19:54:21 2010 +0200
Properly quote the assignment MAKE=$(MAKE). (Thanks to Volker Braun.)
---
tests/BD_Shape/Makefile.am | 2 +- tests/Box/Makefile.am | 2 +- tests/Octagonal_Shape/Makefile.am | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/BD_Shape/Makefile.am b/tests/BD_Shape/Makefile.am index 0f69dc0..5cab708 100644 --- a/tests/BD_Shape/Makefile.am +++ b/tests/BD_Shape/Makefile.am @@ -124,7 +124,7 @@ TESTS = run_tests.stamp
.PHONY: run_tests.stamp run_tests.stamp: run_tests - +MAKE=$(MAKE) $(srcdir)/run_tests + +MAKE="$(MAKE)" $(srcdir)/run_tests echo "true" >run_tests.stamp chmod +x run_tests.stamp
diff --git a/tests/Box/Makefile.am b/tests/Box/Makefile.am index 16cfbfc..cdb5618 100644 --- a/tests/Box/Makefile.am +++ b/tests/Box/Makefile.am @@ -128,7 +128,7 @@ TESTS = run_tests.stamp
.PHONY: run_tests.stamp run_tests.stamp: run_tests - +MAKE=$(MAKE) $(srcdir)/run_tests + +MAKE="$(MAKE)" $(srcdir)/run_tests echo "true" >run_tests.stamp chmod +x run_tests.stamp
diff --git a/tests/Octagonal_Shape/Makefile.am b/tests/Octagonal_Shape/Makefile.am index c0fd9a3..a889eb5 100644 --- a/tests/Octagonal_Shape/Makefile.am +++ b/tests/Octagonal_Shape/Makefile.am @@ -131,7 +131,7 @@ TESTS = run_tests.stamp
.PHONY: run_tests.stamp run_tests.stamp: run_tests - +MAKE=$(MAKE) $(srcdir)/run_tests + +MAKE="$(MAKE)" $(srcdir)/run_tests echo "true" >run_tests.stamp chmod +x run_tests.stamp
participants (1)
-
Roberto Bagnara