aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2002-06-21 02:41:52 +0000
committerAlan Modra <amodra@gmail.com>2002-06-21 02:41:52 +0000
commit6db7a0866cc8614f6a7f542b144acf539635ab9d (patch)
tree9a022c739404b8d3749107061690ea46e4bc0229
parent9710509e6bcb59af4b3f7852d27e652b6c252ea1 (diff)
downloadfsf-binutils-gdb-6db7a0866cc8614f6a7f542b144acf539635ab9d.zip
fsf-binutils-gdb-6db7a0866cc8614f6a7f542b144acf539635ab9d.tar.gz
fsf-binutils-gdb-6db7a0866cc8614f6a7f542b144acf539635ab9d.tar.bz2
* configure.in: Quote bu_cv_have_fopen64.
* configure: Regenerate.
-rw-r--r--binutils/ChangeLog5
-rwxr-xr-xbinutils/configure4
-rw-r--r--binutils/configure.in4
3 files changed, 9 insertions, 4 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 920a9a0..dd169a2 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,8 @@
+2002-06-21 Igor Schein <igor@txc.com>
+
+ * configure.in: Quote bu_cv_have_fopen64.
+ * configure: Regenerate.
+
2002-06-21 Mitsru Chinen <chinen@jp.ibm.com>
* configure.in: Check for strcoll.
diff --git a/binutils/configure b/binutils/configure
index fc59b1d..dc23ef4 100755
--- a/binutils/configure
+++ b/binutils/configure
@@ -5006,12 +5006,12 @@ rm -f conftest*
fi
echo "$ac_t""$bu_cv_have_fopen64" 1>&6
-if test $bu_cv_have_fopen64 != no; then
+if test "$bu_cv_have_fopen64" != no; then
cat >> confdefs.h <<\EOF
#define HAVE_FOPEN64 1
EOF
- if test $bu_cv_have_fopen64 = "need -D_LARGEFILE64_SOURCE"; then
+ if test "$bu_cv_have_fopen64" = "need -D_LARGEFILE64_SOURCE"; then
cat >> confdefs.h <<\EOF
#define _LARGEFILE64_SOURCE 1
EOF
diff --git a/binutils/configure.in b/binutils/configure.in
index 6363141..f2a0482 100644
--- a/binutils/configure.in
+++ b/binutils/configure.in
@@ -115,10 +115,10 @@ bu_cv_have_fopen64="need -D_LARGEFILE64_SOURCE",
bu_cv_have_fopen64=no)
CPPFLAGS=$saved_CPPFLAGS])])
AC_MSG_RESULT($bu_cv_have_fopen64)
-if test $bu_cv_have_fopen64 != no; then
+if test "$bu_cv_have_fopen64" != no; then
AC_DEFINE([HAVE_FOPEN64], 1,
[Is fopen64 available?])
- if test $bu_cv_have_fopen64 = "need -D_LARGEFILE64_SOURCE"; then
+ if test "$bu_cv_have_fopen64" = "need -D_LARGEFILE64_SOURCE"; then
AC_DEFINE([_LARGEFILE64_SOURCE], 1,
[Enable LFS])
fi