aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Collins <bcollins@debian.org>1999-12-10 22:33:07 +0000
committerDavid S. Miller <davem@gcc.gnu.org>1999-12-10 14:33:07 -0800
commit8a90b95d34017116aa60dc6ebd569e6141e1d617 (patch)
treed7ed4d5f454e2bad6cb53240116dbf64df59191f
parentd64554f9b2f22e8ca7354311cfc8aa87b6684d0e (diff)
downloadgcc-8a90b95d34017116aa60dc6ebd569e6141e1d617.zip
gcc-8a90b95d34017116aa60dc6ebd569e6141e1d617.tar.gz
gcc-8a90b95d34017116aa60dc6ebd569e6141e1d617.tar.bz2
configure.in: Fix typo for "-64" in 64bit as check.
* configure.in: Fix typo for "-64" in 64bit as check. * configure: Rebuilt. From-SVN: r30865
-rw-r--r--gcc/ChangeLog5
-rwxr-xr-xgcc/configure4
-rw-r--r--gcc/configure.in2
3 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f15169e..3f49340 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+1999-12-10 Ben Collins <bcollins@debian.org>
+
+ * configure.in: Fix typo for "-64" in 64bit as check.
+ * configure: Rebuilt.
+
1999-12-10 Jakub Jelinek <jakub@redhat.com>
* longlong.h (__sparc_v9__): Use %rDIGIT instead of %DIGIT where
diff --git a/gcc/configure b/gcc/configure
index 4a22aff..bad96bf 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -1337,7 +1337,7 @@ else
fi
# Find some useful tools
-for ac_prog in mawk gawk nawk awk
+for ac_prog in gawk mawk nawk awk
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
@@ -8649,7 +8649,7 @@ else
if test -n "$gcc_cv_as"; then
echo ".xword foo" > conftest.s
gcc_cv_as_flags64=no
- for flag in "-xarch=v9" "64 -Av9"; do
+ for flag in "-xarch=v9" "-64 -Av9"; do
if $gcc_cv_as $flag -o conftest.o conftest.s \
> /dev/null 2>&1; then
gcc_cv_as_flags64=$flag
diff --git a/gcc/configure.in b/gcc/configure.in
index 5b4ccb2..67da5aa 100644
--- a/gcc/configure.in
+++ b/gcc/configure.in
@@ -4359,7 +4359,7 @@ case "$target" in
if test -n "$gcc_cv_as"; then
echo ".xword foo" > conftest.s
gcc_cv_as_flags64=no
- for flag in "-xarch=v9" "64 -Av9"; do
+ for flag in "-xarch=v9" "-64 -Av9"; do
if $gcc_cv_as $flag -o conftest.o conftest.s \
> /dev/null 2>&1; then
gcc_cv_as_flags64=$flag