https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192730
--- Comment #2 from [email protected] --- This is really easy to work around: diff --git a/share/mk/bsd.dep.mk b/share/mk/bsd.dep.mk index 14619eb..0299b37 100644 --- a/share/mk/bsd.dep.mk +++ b/share/mk/bsd.dep.mk @@ -215,7 +215,7 @@ cleandepend: .endif .if !target(checkdpadd) && (defined(DPADD) || defined(LDADD)) -_LDADD_FROM_DPADD= ${DPADD:C;^/usr/lib/lib(.*)\.a$;-l\1;} +_LDADD_FROM_DPADD= ${DPADD:C;^.*/lib(.*)\.(a|so)$;-l\1;} _LDADD_CANONICALIZED= ${LDADD:S/$//} checkdpadd: .if ${_LDADD_FROM_DPADD} != ${_LDADD_CANONICALIZED} I'm not sure if this is the right solution though... -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
