diff options
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -827,10 +827,12 @@ endif # Windows_Host # time. This should help us with code signing issues by removing extended # attribuets from all files. ifeq "$(Darwin_Host)" "YES" +XATTR ?= /usr/bin/xattr + install : install_darwin .PHONY: install_darwin install_darwin: - xattr -c -r . + if [ -e "${XATTR}" ]; then "${XATTR}" -c -r .; fi endif # Darwin_Host ifneq "$(BINDIST)" "YES" |