[PPL-devel] [GIT] ppl/ppl(floating_point): Properly quote the assignment MAKE=$(MAKE).

Roberto Bagnara bagnara at cs.unipr.it
Sun Nov 7 14:50:43 CET 2010


Module: ppl/ppl
Branch: floating_point
Commit: 5eb5954e1de39e24dd82ad553a8a06334f8ed607
URL:    http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=5eb5954e1de39e24dd82ad553a8a06334f8ed607

Author: Roberto Bagnara <bagnara at cs.unipr.it>
Date:   Thu Oct 21 19:52:38 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
 




More information about the PPL-devel mailing list