diff options
author | Ørjan Malde <red@foxi.me> | 2018-07-27 21:32:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-27 21:32:27 +0200 |
commit | ea4aad0b1dd152135554eb1c2f7e35a9948f960e (patch) | |
tree | 3f1cb59ddcdf95d9e3b06b5bdad488655b71a5d5 | |
parent | 9fb8ca649e315260d29282f868c7ceaeed59d486 (diff) | |
download | weechat-ea4aad0b1dd152135554eb1c2f7e35a9948f960e.zip |
don't overwrite user installed GNU auto* files
autoreconf -f overwrites user installed GNU auto* files like config.sub and config.guess
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index e12f0260c..1ceefea26 100755 --- a/autogen.sh +++ b/autogen.sh @@ -64,7 +64,7 @@ run "rm -f ABOUT-NLS" run "rm -rf intl" # execute autoreconf cmds -run "autoreconf -fvi" +run "autoreconf -vi" # ending rm -f $AUTOGEN_LOG |