diff options
author | Roland McGrath <roland@gnu.org> | 2001-03-12 02:41:31 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-03-12 02:41:31 +0000 |
commit | efd822f9dabbaaa7c97b2d02576480a006515047 (patch) | |
tree | e5c6db233c58b9e6e7da8b490702bbf81091026f | |
parent | 8417bf087ef492228db0b0d6db7c1c9dacd8bcd3 (diff) | |
download | glibc-efd822f9dabbaaa7c97b2d02576480a006515047.zip glibc-efd822f9dabbaaa7c97b2d02576480a006515047.tar.gz glibc-efd822f9dabbaaa7c97b2d02576480a006515047.tar.bz2 |
* sysdeps/mach/hurd/configure.in: Add a sanity check on $prefix.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/mach/hurd/configure.in | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2001-03-11 Roland McGrath <roland@frob.com> + + * sysdeps/mach/hurd/configure.in: Add a sanity check on $prefix. + 2001-03-11 Ulrich Drepper <drepper@redhat.com> Last-bit accurate math library implementation by IBM Haifa. diff --git a/sysdeps/mach/hurd/configure.in b/sysdeps/mach/hurd/configure.in index 29bb7e0..7daa188 100644 --- a/sysdeps/mach/hurd/configure.in +++ b/sysdeps/mach/hurd/configure.in @@ -7,3 +7,7 @@ DEFINES="$DEFINES -D_LIBC_REENTRANT" # Don't bother trying to generate any glue code to be compatible with the # existing system library, because we are the only system library. inhibit_glue=yes + +if test "x$prefix" != x; then + AC_MSG_WARN([--prefix= (empty) is required for GNU/Hurd to work normally]) +fi |