]> git.eshelyaron.com Git - emacs.git/commitdiff
(HAVE_LIB64_DIR): Check for crtn.o. (Bug#1287)
authorGlenn Morris <rgm@gnu.org>
Fri, 7 Nov 2008 06:58:45 +0000 (06:58 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 7 Nov 2008 06:58:45 +0000 (06:58 +0000)
configure

index 18fd1f917844f992cd2a1b4cc3b523052806617b..f79aced67c3c3d6cdd96853caf11e7d9eaf30048 100755 (executable)
--- a/configure
+++ b/configure
@@ -5913,9 +5913,11 @@ fi
 
 ### The standard library on x86-64 and s390x GNU/Linux distributions can
 ### be located in either /usr/lib64 or /usr/lib.
+### In some rare cases, /usr/lib64 exists but does not contain the
+### relevant files (bug#1287).  Hence test for crtn.o.
 case "${canonical}" in
   x86_64-*-linux-gnu* | s390x-*-linux-gnu* )
-    if test -d /usr/lib64; then
+    if test -e /usr/lib64/crtn.o; then
 
 cat >>confdefs.h <<\_ACEOF
 #define HAVE_LIB64_DIR 1