Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/43792266f5541db7a1aec45f78f1ca67a4473c49 >--------------------------------------------------------------- commit 43792266f5541db7a1aec45f78f1ca67a4473c49 Author: Ian Lynagh <[email protected]> Date: Thu Nov 24 14:57:05 2011 +0000 Update the sdist VCS exclusions In particular, we now ignore .git directories >--------------------------------------------------------------- ghc.mk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ghc.mk b/ghc.mk index bba9b9b..b62151d 100644 --- a/ghc.mk +++ b/ghc.mk @@ -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 _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
