Commit 8a90b95d by Ben Collins Committed by David S. Miller

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
parent d64554f9
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> 1999-12-10 Jakub Jelinek <jakub@redhat.com>
* longlong.h (__sparc_v9__): Use %rDIGIT instead of %DIGIT where * longlong.h (__sparc_v9__): Use %rDIGIT instead of %DIGIT where
......
...@@ -1337,7 +1337,7 @@ else ...@@ -1337,7 +1337,7 @@ else
fi fi
# Find some useful tools # Find some useful tools
for ac_prog in mawk gawk nawk awk for ac_prog in gawk mawk nawk awk
do do
# Extract the first word of "$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2 set dummy $ac_prog; ac_word=$2
...@@ -8649,7 +8649,7 @@ else ...@@ -8649,7 +8649,7 @@ else
if test -n "$gcc_cv_as"; then if test -n "$gcc_cv_as"; then
echo ".xword foo" > conftest.s echo ".xword foo" > conftest.s
gcc_cv_as_flags64=no 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 \ if $gcc_cv_as $flag -o conftest.o conftest.s \
> /dev/null 2>&1; then > /dev/null 2>&1; then
gcc_cv_as_flags64=$flag gcc_cv_as_flags64=$flag
......
...@@ -4359,7 +4359,7 @@ case "$target" in ...@@ -4359,7 +4359,7 @@ case "$target" in
if test -n "$gcc_cv_as"; then if test -n "$gcc_cv_as"; then
echo ".xword foo" > conftest.s echo ".xword foo" > conftest.s
gcc_cv_as_flags64=no 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 \ if $gcc_cv_as $flag -o conftest.o conftest.s \
> /dev/null 2>&1; then > /dev/null 2>&1; then
gcc_cv_as_flags64=$flag gcc_cv_as_flags64=$flag
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment