diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-02-27 17:21:10 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-02-27 17:21:10 +0000 |
commit | a4ed543319d30bbc0b28efb61f8e344b46382bab (patch) | |
tree | e7d230649350473c3e04513b4a1d60b41c4f6c28 | |
parent | 1731f6a91c35ec595480d079a792951bfd83d6b4 (diff) | |
download | pango-a4ed543319d30bbc0b28efb61f8e344b46382bab.tar.gz |
Bug 412654 – SED variable undefined in the `libtool --config' output
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
svn path=/trunk/; revision=2206
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | configure.in | 1 |
2 files changed, 8 insertions, 0 deletions
@@ -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 |