mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
makedist: Use fixed sort in generated tarball (#10615)
Instead of some undefined order, the files will now be includes in alphabetical order to make the tarball more reproducible.
This commit is contained in:
parent
8c87a5cc6f
commit
9660a7fa59
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ cd ..
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "makedist: Creating $prefix.tar archive."
|
echo "makedist: Creating $prefix.tar archive."
|
||||||
"$tar" cf "$prefix".tar --owner=0 --group=0 --numeric-owner "$prefix"
|
"$tar" cf "$prefix".tar --owner=0 --group=0 --numeric-owner --sort=name "$prefix"
|
||||||
rm -rf "$prefix" "$prefix".tar.*
|
rm -rf "$prefix" "$prefix".tar.*
|
||||||
|
|
||||||
echo "makedist: Creating $prefix.tar.gz archive."
|
echo "makedist: Creating $prefix.tar.gz archive."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue