]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* configure.in: Fix filds test.
authorespie <espie@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 12 Nov 2000 14:06:23 +0000 (14:06 +0000)
committerespie <espie@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 12 Nov 2000 14:06:23 +0000 (14:06 +0000)
* configure: Regen.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37406 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/configure
gcc/configure.in

index 26e35f1ada06b473010b38f26b5aa2a33fbd6966..f4697a05066dfe57060c3c6317aa2c7e40d711a3 100644 (file)
@@ -1,3 +1,7 @@
+2000-11-12  Marc Espie <espie@openbsd.org>
+       * configure.in: Fix filds test.
+       * configure: Regen.
+
 2000-11-12  Mark Mitchell  <mark@codesourcery.com>
 
        * jump.c (delete_computation): Don't assume that just becuase an
index f00d1523b3d365fc847f83431baa6c134b4683b1..3f57a9ecf6c25e3cfb6a0d38add69b6882976edb 100755 (executable)
@@ -9345,7 +9345,7 @@ echo "configure:9329: checking assembler instructions" >&5
     fi
     if test x"$gcc_cv_as_instructions" != x; then
        cat >> confdefs.h <<EOF
-#define HAVE_GAS_`echo "$gcc_cv_as_instructions" | tr 'a-z ' 'A-Z_'` 1
+#define HAVE_GAS_`echo "$gcc_cv_as_instructions" | sed -e 's/ $//' | tr 'a-z ' 'A-Z_'` 1
 EOF
 
     fi
index 0e12bb5d4182415814f99a0da86223859e7b130f..2353804fcb7725daa19d084b88188f2650be7911 100644 (file)
@@ -4809,7 +4809,7 @@ changequote([,])dnl
        rm -f conftest.s conftest.o
     fi
     if test x"$gcc_cv_as_instructions" != x; then
-       AC_DEFINE_UNQUOTED(HAVE_GAS_`echo "$gcc_cv_as_instructions" | tr '[a-z ]' '[A-Z_]'`)
+       AC_DEFINE_UNQUOTED(HAVE_GAS_`echo "$gcc_cv_as_instructions" | sed -e 's/ $//' | tr '[a-z ]' '[A-Z_]'`)
     fi
     AC_MSG_RESULT($gcc_cv_as_instructions)
     ;;