diff options
-rwxr-xr-x | configure | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -148,7 +148,6 @@ if [ -f $pconf ] || [ -f $glconf ]; then do read -p"Re-write existing configuration file(s) (y/n)? " userread done - userread=n # Set `rewriteconfig'. if [ $userread = "n" ]; then @@ -180,7 +179,7 @@ fi # the web address. if [ $rewritepconfig = yes ]; then if type wget > /dev/null 2>/dev/null; then - downloader="wget -O"; + downloader="wget --no-use-server-timestamps -O"; else cat <<EOF @@ -496,7 +495,7 @@ make -f reproduce/src/make/dependencies-basic.mk \ # script. Bash and Make were the tools we need to run Makefiles, so we had # to build them in this script. But after this, we can rely on Makefiles. numthreads=$($instdir/bin/nproc) -./.local/bin/make -f reproduce/src/make/dependencies.mk \ +./.local/bin/make -f reproduce/src/make/dependencies.mk \ static_build=$static_build -j$numthreads |