diff options
-rw-r--r-- | configure.ac | 10 | ||||
-rw-r--r-- | contrib/sssd.spec.in | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d908dbb50..b1e7d85ed 100644 --- a/configure.ac +++ b/configure.ac @@ -9,5 +9,15 @@ AC_PROG_INSTALL AC_CONFIG_SUBDIRS([replace common server sss_client]) +# If the VERSION file has a second line, we'll append it +# to the release tag when creating an RPM or SRPM +# This is intended for build systems to create snapshot +# RPMs. The format should be something like: +# .20090915gitf1bcde7 +# and would result in an SRPM looking like: +# sssd-0.5.0-0.20090915gitf1bcde7.fc11.src.rpm +AC_SUBST([PRERELEASE_VERSION], + m4_esyscmd([cat VERSION |tail --lines=+2 |head -n1 | tr -d '\n'])) + AC_CONFIG_FILES([Makefile contrib/sssd.spec]) AC_OUTPUT diff --git a/contrib/sssd.spec.in b/contrib/sssd.spec.in index 7b257e21d..e5134c062 100644 --- a/contrib/sssd.spec.in +++ b/contrib/sssd.spec.in @@ -1,6 +1,6 @@ Name: @PACKAGE_NAME@ Version: @PACKAGE_VERSION@ -Release: 0%{?dist} +Release: 0@PRERELEASE_VERSION@%{?dist} Group: Applications/System Summary: System Security Services Daemon # The entire source code is GPLv3+ except replace/ which is LGPLv3+ |