summaryrefslogtreecommitdiff
path: root/includes/ghc.mk
diff options
context:
space:
mode:
Diffstat (limited to 'includes/ghc.mk')
-rw-r--r--includes/ghc.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/ghc.mk b/includes/ghc.mk
index 68055b564e..1f7ea116e0 100644
--- a/includes/ghc.mk
+++ b/includes/ghc.mk
@@ -186,10 +186,10 @@ install: install_includes
.PHONY: install_includes
install_includes :
- $(INSTALL_DIR) "$(DESTDIR)$(ghcheaderdir)"
+ $(call INSTALL_DIR,"$(DESTDIR)$(ghcheaderdir)")
for d in $(includes_subdirs); do \
- $(INSTALL_DIR) "$(DESTDIR)$(ghcheaderdir)/$$d"; \
+ $(call INSTALL_DIR,"$(DESTDIR)$(ghcheaderdir)/$$d"); \
done
for i in $(subst includes/,,$(includes_H_FILES) $(includes_H_CONFIG) $(includes_H_PLATFORM)); do \
- $(INSTALL_HEADER) $(INSTALL_OPTS) includes/$$i "$(DESTDIR)$(ghcheaderdir)/$$i"; \
+ $(call INSTALL_HEADER,$(INSTALL_OPTS),includes/$$i,"$(DESTDIR)$(ghcheaderdir)/$$i"); \
done