Skip to content

Commit

Permalink
Use $(MAKE), not make, when recursively calling make
Browse files Browse the repository at this point in the history
  • Loading branch information
igfoo committed Apr 15, 2010
1 parent 4b8a6d6 commit 113f9da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindisttest/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 113f9da

Please sign in to comment.