diff options
author | Andreas Voellmy <andreas.voellmy@gmail.com> | 2013-05-02 10:33:01 -0400 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-05-19 20:47:39 +0100 |
commit | 74c66f5e30f9bb28cf45809958201680b186aeb0 (patch) | |
tree | 834cf753596fc978a572567aecd221ab9c7d8cf8 /ghc.mk | |
parent | b6ef14069677c79f85cfdce7b5d69b06ca35f8b5 (diff) |
Fix for #7879.
Changed copy of utils/haddock/html/resources/html to use "cp -RL" rather than "cp -R". This allows users to run validate in a build tree, where the build tree was setup using lndir with a relative path to the source directory.
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ $(INPLACE_BIN)/$(utils/haddock_dist_PROG): $(INPLACE_LIB)/html $(INPLACE_LIB)/la $(INPLACE_LIB)/html: $(call removeTrees,$@) - "$(CP)" -R utils/haddock/resources/html $@ + "$(CP)" -RL utils/haddock/resources/html $@ $(INPLACE_LIB)/latex: $(call removeTrees,$@) |