https://github.com/geany/geany/blob/63a60f6ad799ebaac511e0ab3d251a44ff6c0061/autogen.sh#L33

The --force option gets propagated down the toolchain:

$ autoreconf --install --verbose --force
autoreconf: Entering directory `.'
autoreconf: running: autopoint --force
autoreconf: running: aclocal --force -I m4
[ . . .]
autoreconf: running: libtoolize --copy --force
[ . . .]
autoreconf: running: /usr/bin/autoconf --force
[ . . .]
autoreconf: running: /usr/bin/autoheader --force
[ . . .]
autoreconf: running: automake --add-missing --copy --force-missing
[ . . .]

And just running autogen.sh makes git think INSTALL is modified.

That's because of automake . . . ; run it without --force-missing and nothing gets modified.


Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany/issues/3077/1003674853@github.com>