diff options
author | Roland McGrath <roland@gnu.org> | 2001-12-02 00:01:20 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-12-02 00:01:20 +0000 |
commit | 9ad72f61cce636ad449bdf0bf32a6d051c99224b (patch) | |
tree | dd89c9bfda1b9f1c3925440431ef374e98556a02 | |
parent | f67125e3c74313d43932fa511cdc2312fdeee8a2 (diff) | |
download | glibc-9ad72f61cce636ad449bdf0bf32a6d051c99224b.zip glibc-9ad72f61cce636ad449bdf0bf32a6d051c99224b.tar.gz glibc-9ad72f61cce636ad449bdf0bf32a6d051c99224b.tar.bz2 |
2001-12-01 Roland McGrath <roland@frob.com>
* sysdeps/mach/hurd/configure.in (libc_cv_gcc_unwind_find_fde): Add
missing backslash in test arguments.
* sysdeps/mach/hurd/configure: Regenerated.
-rwxr-xr-x | sysdeps/mach/hurd/configure | 2 | ||||
-rw-r--r-- | sysdeps/mach/hurd/configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/configure b/sysdeps/mach/hurd/configure index 36d0c08..6289cac 100755 --- a/sysdeps/mach/hurd/configure +++ b/sysdeps/mach/hurd/configure @@ -12,7 +12,7 @@ fi case "$machine" in i386*) - if test -z "$oldest_abi" || test "$oldest_abi" < "2.2.5"; then + if test -z "$oldest_abi" || test "$oldest_abi" \< "2.2.5"; then libc_cv_gcc_unwind_find_fde=yes fi ;; diff --git a/sysdeps/mach/hurd/configure.in b/sysdeps/mach/hurd/configure.in index b271d4a..06a90d2 100644 --- a/sysdeps/mach/hurd/configure.in +++ b/sysdeps/mach/hurd/configure.in @@ -14,7 +14,7 @@ fi case "$machine" in i386*) - if test -z "$oldest_abi" || test "$oldest_abi" < "2.2.5"; then + if test -z "$oldest_abi" || test "$oldest_abi" \< "2.2.5"; then libc_cv_gcc_unwind_find_fde=yes fi ;; |