diff options
author | Ian Lynagh <igloo@earth.li> | 2010-04-15 12:14:53 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-04-15 12:14:53 +0000 |
commit | 113f9dafa36f19279e43377bad60bfcefd36b334 (patch) | |
tree | e4a38a47a39129e5d9b7ea6b0bf2e82295d13221 /bindisttest | |
parent | 4b8a6d6c34bd74a4e3ac4d5d3c19e1236b1882dd (diff) | |
download | haskell-113f9dafa36f19279e43377bad60bfcefd36b334.tar.gz |
Use $(MAKE), not make, when recursively calling make
Diffstat (limited to 'bindisttest')
-rw-r--r-- | bindisttest/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindisttest/Makefile b/bindisttest/Makefile index 2780e5fa9b..e7f9aa49a7 100644 --- a/bindisttest/Makefile +++ b/bindisttest/Makefile @@ -40,7 +40,7 @@ ifeq "$(Windows)" "YES" mv a/b/c/$(BIN_DIST_NAME) $(BIN_DIST_INST_DIR) else cd a/b/c/$(BIN_DIST_NAME) && ./configure --prefix=$(BIN_DIST_INST_DIR) - cd a/b/c/$(BIN_DIST_NAME) && make install + cd a/b/c/$(BIN_DIST_NAME) && $(MAKE) install endif $(BIN_DIST_INST_DIR)/bin/runghc HelloWorld > output $(CONTEXT_DIFF) output expected_output |