* make-dist: Fix --no-update with no pre-existing MANIFEST.
This commit is contained in:
parent
d53ff31bf1
commit
cdcdb11017
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ fi
|
|||
# 'git ls-files' later (e.g., after extraction from a tarball).
|
||||
# Otherwise, rely on the existing MANIFEST, which should be maintained some
|
||||
# other way when adding or deleting a distributed file while not using Git.
|
||||
if [ $update = yes ] && [ -r .git ]; then
|
||||
if ( [ $update = yes ] || [ ! -f MANIFEST ] ) && [ -r .git ]; then
|
||||
echo "Updating MANIFEST"
|
||||
if [ $with_tests = yes ]; then
|
||||
git ls-files >MANIFEST
|
||||
|
|
Loading…
Add table
Reference in a new issue