forked from lix-project/lix
Don't depend on git when generating source tarball
This commit is contained in:
parent
164487a5ba
commit
a7dd26961d
3
local.mk
3
local.mk
|
@ -1,5 +1,6 @@
|
||||||
ifeq ($(MAKECMDGOALS), dist)
|
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
|
endif
|
||||||
|
|
||||||
dist-files += configure config.h.in nix.spec
|
dist-files += configure config.h.in nix.spec
|
||||||
|
|
|
@ -36,7 +36,9 @@ let
|
||||||
|
|
||||||
postUnpack = ''
|
postUnpack = ''
|
||||||
# Clean up when building from a working tree.
|
# Clean up when building from a working tree.
|
||||||
git -C $sourceRoot clean -fd
|
if [[ -d $sourceRoot/.git ]]; then
|
||||||
|
git -C $sourceRoot clean -fd
|
||||||
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
|
Loading…
Reference in a new issue