mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix the following:
It appears that make fails to read the global symbol table of the archive file, making it think that the library needs to be rebuilt. fix supplied in PR: PR: bin/14167 Submitted by: Sebastian Lederer <lederer@bonn-online.com> Reviewed by: gallatin@FreeBSD.ORG
This commit is contained in:
parent
7b92e9236e
commit
110acfcd2b
1 changed files with 1 additions and 1 deletions
|
|
@ -807,7 +807,7 @@ ArchFindMember (archive, member, arhPtr, mode)
|
|||
* the comparisons easier...
|
||||
*/
|
||||
cp = strrchr (member, '/');
|
||||
if (cp != (char *) NULL) {
|
||||
if ((cp != NULL) && (strcmp(member, RANLIBMAG) != 0)) {
|
||||
member = cp + 1;
|
||||
}
|
||||
len = tlen = strlen (member);
|
||||
|
|
|
|||
Loading…
Reference in a new issue