diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2012-06-25 10:34:22 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2012-06-25 10:34:22 +0300 |
commit | 5322c3bd4bb99e9f1221eeddaf8de4da0f729e99 (patch) | |
tree | f706bd7107214a07634c7604a11e8b062fe2ee3b /configure.ac | |
parent | 6c5214950e5885c33c498969ca256c9550f5936b (diff) | |
download | librpm-tizen-5322c3bd4bb99e9f1221eeddaf8de4da0f729e99.tar.gz librpm-tizen-5322c3bd4bb99e9f1221eeddaf8de4da0f729e99.tar.bz2 librpm-tizen-5322c3bd4bb99e9f1221eeddaf8de4da0f729e99.zip |
Add support for quilt (ticket #54) and bzr to %autosetup/patch
- These are both "appears to have roughly the intended effect" level
tested, but I'm not really familiar with either bzr or quilt so
any further refinements need to come from people actually familiar
with these tools.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 55ba214ee..cd11d26e0 100644 --- a/configure.ac +++ b/configure.ac @@ -144,6 +144,8 @@ AC_PATH_PROG(__STRIP, strip, /usr/bin/strip, $MYPATH) AC_PATH_PROG(__GIT, git, /usr/bin/git, $MYPATH) AC_PATH_PROG(__HG, hg, /usr/bin/hg, $MYPATH) +AC_PATH_PROG(__BZR, bzr, /usr/bin/bzr, $MYPATH) +AC_PATH_PROG(__QUILT, quilt, /usr/bin/quilt, $MYPATH) AC_PATH_PROG(__FAKECHROOT, fakechroot, no, $MYPATH) AM_CONDITIONAL(HAVE_FAKECHROOT, [test "$__FAKECHROOT" != "no"]) |