diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-03-03 13:43:49 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-03-03 14:20:27 +0000 |
commit | 59d2216e8f1b29f86b0fdb6b52a141eb2ec0e2c9 (patch) | |
tree | 4939bfceffcbd189d283fd638302c7652e117920 /ghc.mk | |
parent | 180c850db96e5c953ac3cfb444302631e57995c3 (diff) | |
download | haskell-59d2216e8f1b29f86b0fdb6b52a141eb2ec0e2c9.tar.gz |
Add missing parenthesis
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -625,7 +625,7 @@ ifneq "$(CLEANING)" "YES" # or PACKAGES_STAGE1. BUILD_DIRS += $(patsubst %, libraries/%, $(PACKAGES_STAGE2)) BUILD_DIRS += $(patsubst %, libraries/%, $(PACKAGES_STAGE1)) -BUILD_DIRS += $(patsubst %, libraries/%, $(filter-out $(PACKAGES_STAGE1),$(PACKAGES_STAGE0)) +BUILD_DIRS += $(patsubst %, libraries/%, $(filter-out $(PACKAGES_STAGE1),$(PACKAGES_STAGE0))) BUILD_DIRS += $(wildcard libraries/dph) endif |