From 113f9dafa36f19279e43377bad60bfcefd36b334 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Thu, 15 Apr 2010 12:14:53 +0000 Subject: [PATCH] Use $(MAKE), not make, when recursively calling make --- bindisttest/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindisttest/Makefile b/bindisttest/Makefile index 2780e5f..e7f9aa4 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 -- 1.7.10.4