mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
tarball generation should build configure script
For the next release, this means that `autoconf` is no longer required if building from the tarball. The website and documentation should be updated accordingly at that time.
This commit is contained in:
parent
9921e9e79f
commit
5023ade7ac
1 changed files with 3 additions and 1 deletions
|
@ -32,7 +32,8 @@ rm -f "$path" "$path".gz
|
|||
# git starts the archive
|
||||
git archive --format=tar --prefix="$prefix"/ master > "$path"
|
||||
|
||||
# tarball out the documentation
|
||||
# tarball out the documentation, generate a configure script and version file
|
||||
autoconf
|
||||
make user_doc
|
||||
make share/man
|
||||
echo $VERSION > version
|
||||
|
@ -42,6 +43,7 @@ ln -s "$wd" "$prefix"
|
|||
gnutar --append --file="$path" "$prefix"/user_doc/html
|
||||
gnutar --append --file="$path" "$prefix"/share/man
|
||||
gnutar --append --file="$path" "$prefix"/version
|
||||
gnutar --append --file="$path" "$prefix"/configure
|
||||
rm -f "$prefix"/version
|
||||
rm -f "$prefix"
|
||||
|
||||
|
|
Loading…
Reference in a new issue