summaryrefslogtreecommitdiff
path: root/rules/build-package.mk
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2009-12-09 12:39:29 +0000
committerIan Lynagh <igloo@earth.li>2009-12-09 12:39:29 +0000
commitaea784af873f089a40af71849d83f59008562a58 (patch)
tree750cdda524b53717b2171d9c5e49bedb97e52d58 /rules/build-package.mk
parent6ca3201b4bb8e5bfa0cd37646f1b0753fb975b29 (diff)
downloadhaskell-aea784af873f089a40af71849d83f59008562a58.tar.gz
Eliminate mkdependC
We now just call gcc to get the dependencies directly
Diffstat (limited to 'rules/build-package.mk')
-rw-r--r--rules/build-package.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/build-package.mk b/rules/build-package.mk
index 9e1ab7acf2..4005c73179 100644
--- a/rules/build-package.mk
+++ b/rules/build-package.mk
@@ -119,7 +119,7 @@ $(call includes-sources,$1,$2)
# We must use a different dependency file if $(GhcLibWays) changes, so
# encode the ways into the name of the file.
$1_$2_WAYS_DASHED = $$(subst $$(space),,$$(patsubst %,-%,$$(strip $$($1_$2_WAYS))))
-$1_$2_depfile = $1/$2/build/.depend$$($1_$2_WAYS_DASHED)
+$1_$2_depfile_base = $1/$2/build/.depend$$($1_$2_WAYS_DASHED)
$(call build-dependencies,$1,$2)