summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-11-14 20:03:33 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-11-14 20:03:33 +0000
commitbd01949fa8525ce740924eb307e694b695cee4dc (patch)
tree0a2685f1a7c2ec774652849417481c9ddec547bf /configure.in
parent0a3bf41e9d1a8dba3d3b2ea543d291fb74f3fd5b (diff)
downloadpango-bd01949fa8525ce740924eb307e694b695cee4dc.tar.gz
Bug 352795 – configure.in: Bug in "checking Whether to write
2006-11-14 Behdad Esfahbod <behdad@gnome.org> Bug 352795 – configure.in: Bug in "checking Whether to write dependencies into .pc files" * configure.in: Make libtool magic robust.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index ce1cc92d..f7a36449 100644
--- a/configure.in
+++ b/configure.in
@@ -625,7 +625,7 @@ AC_ARG_ENABLE(explicit-deps,
AC_MSG_CHECKING([Whether to write dependencies into .pc files])
case $enable_explicit_deps in
auto)
- deplibs_check_method=`(./libtool --config; echo eval echo \\$deplibs_check_method) | sh`
+ deplibs_check_method=`(./libtool --config; echo 'eval echo $deplibs_check_method') | sh`
if test "x$deplibs_check_method" '!=' xpass_all || test "x$enable_static" = xyes ; then
enable_explicit_deps=yes
else