8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--install
1 parent 94ad2a7 commit 2c5c030Copy full SHA for 2c5c030
autoconf/entry.sh
@@ -22,6 +22,14 @@ if [ "$#" = "0" ]; then
22
fi
23
24
echo "Rebuilding configure script using $($AUTOCONF --version | head -n 1)"
25
+ set -x
26
+ # autoreconf's '--force' option doesn't affect any of the files installed
27
+ # by the '--install' option. Remove the files to truly force them to be
28
+ # updated so that the CPython repo doesn't drift from this repo.
29
+ rm -f /src/aclocal.m4
30
+ rm -f /src/config.guess
31
+ rm -f /src/config.sub
32
+ rm -f /src/install-sh
33
exec $AUTORECONF -ivf -Werror $@
34
35
0 commit comments