diff options
author | Daniel Jacobowitz <drow@false.org> | 2007-10-23 12:34:18 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2007-10-23 12:34:18 +0000 |
commit | 7b3200f9aef4a1a92e8f8113a81c873593756b7f (patch) | |
tree | eb6b75e28ac6cc6ed6be02a19ec7b1a789531de6 /gdb/configure | |
parent | 89ba75b1ecaa14d207f43dccc4a4aa76efef26d6 (diff) | |
download | gdb-7b3200f9aef4a1a92e8f8113a81c873593756b7f.zip gdb-7b3200f9aef4a1a92e8f8113a81c873593756b7f.tar.gz gdb-7b3200f9aef4a1a92e8f8113a81c873593756b7f.tar.bz2 |
PR gdb/2336
* Makefile.def (dependencies): Make configure-gdb depend on
all-intl.
* Makefile.in: Regenerated.
* configure.ac: Modify $LIBINTL before the BFD check.
* configure: Regenerated.
Diffstat (limited to 'gdb/configure')
-rwxr-xr-x | gdb/configure | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/configure b/gdb/configure index dccc233..4e16b61 100755 --- a/gdb/configure +++ b/gdb/configure @@ -21913,7 +21913,8 @@ OLD_LDFLAGS=$LDFLAGS OLD_LIBS=$LIBS CFLAGS="$CFLAGS -I${srcdir}/../include -I../bfd -I${srcdir}/../bfd" LDFLAGS="$LDFLAGS -L../bfd -L../libiberty" -LIBS="$LIBS -lbfd -liberty $LIBINTL" +intl=`echo $LIBINTL | sed 's,${top_builddir}/,,g'` +LIBS="$LIBS -lbfd -liberty $intl" echo "$as_me:$LINENO: checking for ELF support in BFD" >&5 echo $ECHO_N "checking for ELF support in BFD... $ECHO_C" >&6 if test "${gdb_cv_var_elf+set}" = set; then |