From 08abc40b22ef5a21e57e9b153cc0b8ea24037c8e Mon Sep 17 00:00:00 2001
From: Eric Andersen <andersen@codepoet.org>
Date: Wed, 3 Dec 2003 20:12:45 +0000
Subject: Rob McMullen writes: There is code in ldconfig that checks to see if
 a shared library is named either ``lib*'' or ``ld-*'' before ldconfig -l will
 work on it. gawk uses this feature of ldconfig to make
 /lib/rcscripts/filefuncs.so, so the build fails.

---
 utils/ldconfig.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

(limited to 'utils')

diff --git a/utils/ldconfig.c b/utils/ldconfig.c
index 806604edd..cf7c001dd 100644
--- a/utils/ldconfig.c
+++ b/utils/ldconfig.c
@@ -188,9 +188,8 @@ char *is_shlib(const char *dir, const char *name, int *type,
     struct stat statbuf;
     char buff[4096];
 
-    /* see if name is of the form libZ.so* */
-    if ((strncmp(name, "lib", 3) == 0 || strncmp(name, "ld-", 3) == 0) && \
-	    name[strlen(name)-1] != '~' && (cp = strstr(name, ".so")))
+    /* see if name is of the form *.so* */
+    if (name[strlen(name)-1] != '~' && (cp = strstr(name, ".so")))
     {
 	/* find the start of the Vminor part, if any */
 	if (cp[3] == '.' && (cp2 = strchr(cp + 4, '.')))
-- 
cgit v1.2.3