Browse Source

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.

Eric Andersen 21 years ago
parent
commit
08abc40b22
1 changed files with 2 additions and 3 deletions
  1. 2 3
      utils/ldconfig.c

+ 2 - 3
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, '.')))