diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-03-23 11:56:46 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-03-23 13:32:38 +0000 |
commit | 9548ec53d31b478bd22a4dd9cbce1244db013b67 (patch) | |
tree | de1d6054fa25089e6e56ea66f9beeb60db3e2cb8 /rules/build-dependencies.mk | |
parent | 1c0af76b1819fbe22edd04445c1936336fab8ce0 (diff) | |
download | haskell-9548ec53d31b478bd22a4dd9cbce1244db013b67.tar.gz |
Tweak the _HC_OPTS variables
We no longer pass -hisuf/-osuf flags to "ghc -M". Doing so didn't really
make sense with the way the -dep-suffix flags now work.
Diffstat (limited to 'rules/build-dependencies.mk')
-rw-r--r-- | rules/build-dependencies.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/build-dependencies.mk b/rules/build-dependencies.mk index 7bbb8c5f36..bb047f62f0 100644 --- a/rules/build-dependencies.mk +++ b/rules/build-dependencies.mk @@ -35,7 +35,7 @@ $$($1_$2_depfile_haskell) : $$($1_$2_HS_SRCS) $$($1_$2_HS_BOOT_SRCS) $$($1_$2_HC $$(call removeFiles,$$@.tmp) ifneq "$$($1_$2_HS_SRCS)" "" "$$($1_$2_HC_MK_DEPEND)" -M \ - $$(filter-out -split-objs, $$($1_$2_$$(firstword $$($1_$2_WAYS))_ALL_HC_OPTS)) \ + $$($1_$2_$$(firstword $$($1_$2_WAYS))_MOST_DIR_HC_OPTS) \ $$($1_$2_MKDEPENDHS_FLAGS) \ $$($1_$2_HS_SRCS) endif |