[commit: testsuite] master: use $(MAKE) instead of make (#7180) (caf1ad8)

Simon Marlow marlowsd at gmail.com
Thu Aug 23 16:33:49 CEST 2012


Repository : ssh://darcs.haskell.org//srv/darcs/testsuite

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/caf1ad81a855268e31ff6e67ed1f76a2c7b66270

>---------------------------------------------------------------

commit caf1ad81a855268e31ff6e67ed1f76a2c7b66270
Author: Simon Marlow <marlowsd at gmail.com>
Date:   Thu Aug 23 15:22:51 2012 +0100

    use $(MAKE) instead of make (#7180)

>---------------------------------------------------------------

 tests/plugins/Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/plugins/Makefile b/tests/plugins/Makefile
index 79b1217..4e67fe1 100644
--- a/tests/plugins/Makefile
+++ b/tests/plugins/Makefile
@@ -11,10 +11,10 @@ plugins01:
 	# the output of the call to the TEST_HC (probably just the last 2).
 	#
 	# Suggestions to make this better gratefully recieved.
-	(cd simple-plugin; make package)
+	(cd simple-plugin; $(MAKE) package)
 	$(RM) plugins01.hi plugins01.o
 	"$(TEST_HC)" $(HC_OPTS) --make -v0 plugins01.hs -package-db simple-plugin/local.package.conf -fplugin Simple.Plugin -fplugin-opt Simple.Plugin:Irrelevant_Option -package simple-plugin
 	./plugins01
 
 clean:
-	cd simple-plugin && make clean
+	cd simple-plugin && $(MAKE) clean





More information about the Cvs-ghc mailing list