diff options
author | Pedro Alves <palves@redhat.com> | 2012-02-10 13:57:59 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-02-10 13:57:59 +0000 |
commit | 12cd34f3ad4fe3d0fd15d0c1dafe9d01c1bfa64c (patch) | |
tree | 7f7f8ce47c54dee4b386e4fb6e288f28a94aa706 /gdb/configure | |
parent | e871429d8d1e00b7d0e5cfdf4675efd7564f0afb (diff) | |
download | gdb-12cd34f3ad4fe3d0fd15d0c1dafe9d01c1bfa64c.zip gdb-12cd34f3ad4fe3d0fd15d0c1dafe9d01c1bfa64c.tar.gz gdb-12cd34f3ad4fe3d0fd15d0c1dafe9d01c1bfa64c.tar.bz2 |
2012-02-10 Pedro Alves <palves@redhat.com>
* configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
the test CFLAGS.
* configure: Regenerate.
Diffstat (limited to 'gdb/configure')
-rwxr-xr-x | gdb/configure | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/configure b/gdb/configure index 11c044c..2566410 100755 --- a/gdb/configure +++ b/gdb/configure @@ -15320,7 +15320,10 @@ esac OLD_CFLAGS=$CFLAGS OLD_LDFLAGS=$LDFLAGS OLD_LIBS=$LIBS -CFLAGS="$CFLAGS -I${srcdir}/../include -I../bfd -I${srcdir}/../bfd" +# Put the old CFLAGS/LDFLAGS last, in case the user's (C|LD)FLAGS +# points somewhere with bfd, with -I/foo/lib and -L/foo/lib. We +# always want our bfd. +CFLAGS="-I${srcdir}/../include -I../bfd -I${srcdir}/../bfd $CFLAGS" LDFLAGS="-L../bfd -L../libiberty $LDFLAGS" intl=`echo $LIBINTL | sed 's,${top_builddir}/,,g'` # -ldl is provided by bfd/Makfile.am (LIBDL) <PLUGINS>. |