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

Roberto Bagnara bagnara at cs.unipr.it
Thu Oct 21 19:50:23 CEST 2010


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

Author: Roberto Bagnara <bagnara at cs.unipr.it>
Date:   Thu Oct 21 19:49:23 2010 +0200

Properly quote the assignment MAKE=$(MAKE).
(Thanks to Volker Braun.)

---

 tests/BD_Shape/Makefile.am            |    2 +-
 tests/Box/Makefile.am                 |    2 +-
 tests/Concrete_Expression/Makefile.am |    2 +-
 tests/Octagonal_Shape/Makefile.am     |    2 +-
 4 files changed, 4 insertions(+), 4 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/Concrete_Expression/Makefile.am b/tests/Concrete_Expression/Makefile.am
index 59f673b..4675a65 100644
--- a/tests/Concrete_Expression/Makefile.am
+++ b/tests/Concrete_Expression/Makefile.am
@@ -89,7 +89,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