diff options
author | DJ Delorie <dj@redhat.com> | 2002-06-19 17:39:26 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2002-06-19 17:39:26 +0000 |
commit | b2bd228ec0086f1bbbad38be0741e7cc71951e3a (patch) | |
tree | 55b546b597820c35a1335a277a1708e4b959e76b | |
parent | 170911c7665011a378856316caa5650532b594c4 (diff) | |
download | gdb-b2bd228ec0086f1bbbad38be0741e7cc71951e3a.zip gdb-b2bd228ec0086f1bbbad38be0741e7cc71951e3a.tar.gz gdb-b2bd228ec0086f1bbbad38be0741e7cc71951e3a.tar.bz2 |
* configure.in: Eliminate ${gasdir} variable.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2002-06-19 Nathanael Nerode <neroden@twcny.rr.com> + + * configure.in: Eliminate ${gasdir} variable. + 2002-06-18 Dave Brolley <brolley@redhat.com> * configure.in: Add support for frv. diff --git a/configure.in b/configure.in index 1c5f712..cf039a8 100644 --- a/configure.in +++ b/configure.in @@ -402,7 +402,6 @@ case "${enable_target_optspace}:${target}" in esac skipdirs= -gasdir=gas use_gnu_ld= use_gnu_as= @@ -1283,7 +1282,7 @@ fi # --without-gnu-ld options for the configure script. if test x${use_gnu_as} = x ; then - if test x${with_gnu_as} != xno && echo " ${configdirs} " | grep " ${gasdir} " > /dev/null 2>&1 && test -d ${srcdir}/${gasdir} ; then + if test x${with_gnu_as} != xno && echo " ${configdirs} " | grep " gas " > /dev/null 2>&1 && test -d ${srcdir}/gas ; then with_gnu_as=yes withoptions="$withoptions --with-gnu-as" fi |