summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2012-04-02 11:19:33 +0100
committerColin Watson <cjwatson@debian.org>2012-04-02 11:19:33 +0100
commit6f6ea15b1e8db08a4008abff64a287ee5ac327a8 (patch)
treea02908efad33d197d6140d0b0e549cf5cd914a7c /configure.ac
parentb4fcc0dd1f8ca61369332f4b9e8f1a718ea3e277 (diff)
* Fix cross-building:
- Allow using a cross-architecture pkg-config. - Pass default LDFLAGS to contrib/Makefile. - Allow dh_strip to strip gnome-ssh-askpass, rather than calling 'install -s'.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 58da1f167..e040a3d54 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1349,7 +1349,7 @@ AC_ARG_WITH([libedit],
1349 [ --with-libedit[[=PATH]] Enable libedit support for sftp], 1349 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
1350 [ if test "x$withval" != "xno" ; then 1350 [ if test "x$withval" != "xno" ; then
1351 if test "x$withval" = "xyes" ; then 1351 if test "x$withval" = "xyes" ; then
1352 AC_PATH_PROG([PKGCONFIG], [pkg-config], [no]) 1352 AC_PATH_TOOL([PKGCONFIG], [pkg-config], [no])
1353 if test "x$PKGCONFIG" != "xno"; then 1353 if test "x$PKGCONFIG" != "xno"; then
1354 AC_MSG_CHECKING([if $PKGCONFIG knows about libedit]) 1354 AC_MSG_CHECKING([if $PKGCONFIG knows about libedit])
1355 if "$PKGCONFIG" libedit; then 1355 if "$PKGCONFIG" libedit; then