diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-08-23 15:22:51 +0100 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-08-23 15:22:51 +0100 |
commit | c9e10d0dc42d3d0e27edbba5b40cd31b3668fc7e (patch) | |
tree | fa4e59708cb37108e843d99e4ecfaaf7f73c16b2 | |
parent | d8ca9ab58b3143424830cb8089ddaa5336902a24 (diff) | |
download | haskell-c9e10d0dc42d3d0e27edbba5b40cd31b3668fc7e.tar.gz |
use $(MAKE) instead of make (#7180)
-rw-r--r-- | testsuite/tests/plugins/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/plugins/Makefile b/testsuite/tests/plugins/Makefile index 79b12177db..4e67fe1e7a 100644 --- a/testsuite/tests/plugins/Makefile +++ b/testsuite/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 |