summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--configure.in1
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a0f0b66e..c10222b8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-02-27 Behdad Esfahbod <behdad@gnome.org>
+
+ Bug 412654 – SED variable undefined in the `libtool --config' output
+ used by configure
+
+ * configure.in: export SED before calling libtool
+
2007-02-26 Tor Lillqvist <tml@novell.com>
This change was supposed to go in the trunk before 1.16.0, but it
diff --git a/configure.in b/configure.in
index e2ed1c44..9c9f213f 100644
--- a/configure.in
+++ b/configure.in
@@ -681,6 +681,7 @@ AC_ARG_ENABLE(explicit-deps,
AC_MSG_CHECKING([Whether to write dependencies into .pc files])
case $enable_explicit_deps in
auto)
+ export SED
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