From d6dcaad31f4ca0b44ae639adf788d5bf50f48cec Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sat, 16 Jan 2016 16:09:12 -0500 Subject: configure.ac: Set PACKAGE_VERSION to git-describe output --- diff --git a/configure.ac b/configure.ac index bf44d0b..417ff9c 100644 --- a/configure.ac +++ b/configure.ac @@ -23,6 +23,9 @@ AC_INIT([ProteanOS Development Kit], [2.0.0], [http://www.proteanos.com/dev/prokit/]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR([src/main.sh]) +if test -d "${srcdir}/.git"; then + PACKAGE_VERSION="$(git describe --tags HEAD | sed 's|^.*/||')" +fi AM_INIT_AUTOMAKE([gnu check-news dist-bzip2 dist-xz subdir-objects]) AM_SILENT_RULES([yes]) -- cgit v0.9.1