diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-10-25 21:12:06 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-10-25 21:12:06 +0000 |
commit | 86cfe82d03d4930c3aedbf042da79f5aa005b7ac (patch) | |
tree | 5a105b28b33343f0e304696f5b0cb66b8a8dcec1 /configure.in | |
parent | 76b47e64d57dd80111ec64a4d8a08152d32f72d5 (diff) | |
download | glibc-86cfe82d03d4930c3aedbf042da79f5aa005b7ac.tar.gz glibc-86cfe82d03d4930c3aedbf042da79f5aa005b7ac.tar.xz glibc-86cfe82d03d4930c3aedbf042da79f5aa005b7ac.zip |
Update.
* configure.in: Don't allow --enable-kernel without parameter. 1999-10-25 Ulrich Drepper <drepper@cygnus.com>
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 1667b2a705..05c61cd9c1 100644 --- a/configure.in +++ b/configure.in @@ -174,6 +174,11 @@ AC_ARG_ENABLE(kernel, [ --enable-kernel=VERSION compile for compatibility with kernel not older than VERSION], minimum_kernel=$enableval) +dnl Prevent unreasonable values. +if test "$minimum_kernel" = yes || test "$minimum_kernel" = no; then + # Better nothing than this. + minimum_kernel="" +fi AC_CANONICAL_HOST |