Merge pull request #667 from Ericson2314/mk-dist

Don't depend on .git/ when generating source tarball V2
This commit is contained in:
Eelco Dolstra 2015-10-26 11:14:12 +01:00
commit f6a224bd68
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,6 @@
ifeq ($(MAKECMDGOALS), dist)
dist-files += $(shell git ls-files)
# Make sure we are in repo root with `--git-dir`
dist-files += $(shell git --git-dir=.git ls-files || find * -type f)
endif
dist-files += configure config.h.in nix.spec

View file

@ -36,7 +36,9 @@ let
postUnpack = ''
# Clean up when building from a working tree.
(cd $sourceRoot && (git ls-files -o | xargs -r rm -v))
if [[ -d $sourceRoot/.git ]]; then
git -C $sourceRoot clean -fd
fi
'';
preConfigure = ''