summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2003-07-23 09:44:35 +0000
committerAndreas Gruenbacher <agruen@suse.de>2003-07-23 09:44:35 +0000
commit38537ab38d027b04554708b91d9f6a1c339a85e6 (patch)
treec899f9d98e73d7a455552591b7f049f6ffc4910a /configure.ac
parent458458c46b55a2e5aa96910c0c718ec31ae9d4ab (diff)
downloadquilt-38537ab38d027b04554708b91d9f6a1c339a85e6.tar.gz
- Add Autoconf test for rpmbuild vs. rpm (needed for `make rpm').
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 63ecaed..f23dbec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT([quilt],[0.24],[quilt-dev@nongnu.org])
AC_CONFIG_AUX_DIR(config)
AC_PREREQ(2.53)
-AC_REVISION ($Revision: 1.14 $)
+AC_REVISION ($Revision: 1.15 $)
PACKAGE_RELEASE=1
AC_SUBST(PACKAGE_RELEASE)
@@ -216,6 +216,10 @@ if test -z "$MSGFMT" ; then
AC_MSG_NOTICE([Building without natural language support])
fi
+dnl Check for rpmbuild (v4) vs. rpm (v3)
+AC_PATH_PROGS(RPMBUILD, [rpmbuild rpm])
+AC_SUBST(RPMBUILD)
+
AC_CONFIG_FILES(Makefile)
AC_OUTPUT