diff options
author | Ian Lynagh <igloo@earth.li> | 2011-11-24 14:57:05 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-11-24 15:01:03 +0000 |
commit | 43792266f5541db7a1aec45f78f1ca67a4473c49 (patch) | |
tree | 6453ba27375eab2a0d75508404d29e26a11afbd2 | |
parent | 633848f26fbb0d226b5e2ad45bed3a83785b36cd (diff) | |
download | haskell-43792266f5541db7a1aec45f78f1ca67a4473c49.tar.gz |
Update the sdist VCS exclusions
In particular, we now ignore .git directories
-rw-r--r-- | ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1096,7 +1096,7 @@ sdist-prep : $(call sdist_file,utils/haddock,dist,src,Haddock,Lex,x) $(call sdist_file,utils/haddock,dist,src,Haddock,Parse,y) cd $(SRC_DIST_DIR) && $(call removeTrees,compiler/stage[123] mk/build.mk) - cd $(SRC_DIST_DIR) && "$(FIND)" $(SRC_DIST_DIRS) \( -name _darcs -o -name SRC -o -name "autom4te*" -o -name "*~" -o -name ".cvsignore" -o -name "\#*" -o -name ".\#*" -o -name "log" -o -name "*-SAVE" -o -name "*.orig" -o -name "*.rej" -o -name "*-darcs-backup*" \) -print | "$(XARGS)" $(XARGS_OPTS) "$(RM)" $(RM_OPTS_REC) + cd $(SRC_DIST_DIR) && "$(FIND)" $(SRC_DIST_DIRS) \( -name .git -o -name "autom4te*" -o -name "*~" -o -name "\#*" -o -name ".\#*" -o -name "log" -o -name "*-SAVE" -o -name "*.orig" -o -name "*.rej" \) -print | "$(XARGS)" $(XARGS_OPTS) "$(RM)" $(RM_OPTS_REC) .PHONY: sdist sdist : sdist-prep |