diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-11-14 20:06:46 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-11-14 20:06:46 +0000 |
commit | d5b35a5db9e63e4a7eb89ca6b24c677a81fb2cd2 (patch) | |
tree | e2a6e5ed1771dc695ce402272ac791623933cc1d /configure.in | |
parent | ed3f611c4157e9969e688cc91056d810290e7c16 (diff) | |
download | gtk+-d5b35a5db9e63e4a7eb89ca6b24c677a81fb2cd2.tar.gz |
Make libtool magic robust. (#352795)
2006-11-14 Behdad Esfahbod <behdad@gnome.org>
* configure.in: Make libtool magic robust. (#352795)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 39a2e634e7..5a55b06f26 100644 --- a/configure.in +++ b/configure.in @@ -366,7 +366,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 |