diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-06-27 00:59:00 +0200 |
---|---|---|
committer | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-06-27 00:59:00 +0200 |
commit | a11b51c254dc336f92a564f253f7be310d6d68ef (patch) | |
tree | 62ef14bf39befb6f982e84ff6f7220ef1a951b02 /configure.ac | |
parent | bdf731eead3e62cad636fcf7d362b34ac6f35e1a (diff) | |
download | crosstool-ng-a11b51c254dc336f92a564f253f7be310d6d68ef.tar.gz crosstool-ng-a11b51c254dc336f92a564f253f7be310d6d68ef.tar.bz2 crosstool-ng-a11b51c254dc336f92a564f253f7be310d6d68ef.zip |
scripts: first batch of hg->git conversion
Replace calls to 'hg' with as-close-as-possible equivalents in git.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 6b771639..fd69af21 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,6 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.67]) -#AC_INIT([crosstool-NG], [hg], [crossgcc@sourceware.org]) AC_INIT([crosstool-NG], [m4_esyscmd_s([cat .version])], [crossgcc@sourceware.org]) AC_CONFIG_AUX_DIR([scripts]) @@ -360,10 +359,8 @@ AS_IF( [PACKAGE_VERSION="${V}"], [AS_CASE( [${PACKAGE_VERSION}], - [hg|*+hg], - [rev_id="$( hg log -r . --template '{branch}-{node|short}\n' \ - 2>/dev/null \ - || true )" + [git|*+git], + [rev_id="$( git describe --tags 2>/dev/null )" PACKAGE_VERSION="${PACKAGE_VERSION}+${rev_id:-unknown-$( date +%Y%m%d.%H%M%S )}" ])]) # Arrange to have no / in the directory name, no need to create an |