524f353602
https://git.savannah.gnu.org/cgit/autoconf.git/tree/NEWS?h=v2.72 Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
autoconf: don't append -dirty to version
|
|
|
|
Don't append -dirty to autoconf version number if the buildroot git tree
|
|
has uncommited changes.
|
|
|
|
This script is meant for the autoconf developers, but it also activates
|
|
if you build autoconf in a subdirectory of a git tree (E.G. like how it's
|
|
commonly done in buildroot).
|
|
|
|
The affect is that autoconf gets built as being version 2.65-dirty, which
|
|
breaks programs (like Python) which explicitly checks for autoconf-2.65.
|
|
|
|
[Gustavo: update for autoconf 2.69]
|
|
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
|
|
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
|
|
|
diff -Nura autoconf-2.69.orig/build-aux/git-version-gen autoconf-2.69/build-aux/git-version-gen
|
|
--- autoconf-2.69.orig/build-aux/git-version-gen 2013-06-27 11:31:02.340200154 -0300
|
|
+++ autoconf-2.69/build-aux/git-version-gen 2013-06-27 11:31:13.734577033 -0300
|
|
@@ -210,7 +210,7 @@
|
|
*) # Append the suffix only if there isn't one already.
|
|
case $v in
|
|
*-dirty) ;;
|
|
- *) v="$v-dirty" ;;
|
|
+ #*) v="$v-dirty" ;;
|
|
esac ;;
|
|
esac
|
|
fi
|