diff options
author | asami <asami@FreeBSD.org> | 1998-10-09 01:27:21 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-10-09 01:27:21 +0000 |
commit | 7e2894fecf6dc31ffc6743f6b3082808452c84a0 (patch) | |
tree | 0d99d005e042c55e93640394f5494f0ec904c0ae /share | |
parent | afb7d7e829ec2c519377c2e71e88bf2c8223a5c2 (diff) | |
download | FreeBSD-src-7e2894fecf6dc31ffc6743f6b3082808452c84a0.zip FreeBSD-src-7e2894fecf6dc31ffc6743f6b3082808452c84a0.tar.gz |
Add new variable NO_FILTER_SHLIBS -- it will disable ELF <-> a.out shlib
name conversion. Use it for binary ports that come with its own private
shlib dirs, ports that install linux compatibility libraries (thus following
their naming conventions and not ours), etc.
Reviewed by: Martin Cracauer <cracauer@FreeBSD.ORG>
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.port.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index c50a8ca..39eafd6 100644 --- a/share/mk/bsd.port.mk +++ b/share/mk/bsd.port.mk @@ -1,7 +1,7 @@ #-*- mode: Fundamental; tab-width: 4; -*- # ex:ts=4 # -# $Id: bsd.port.mk,v 1.291 1998/09/22 23:58:49 asami Exp $ +# $Id: bsd.port.mk,v 1.292 1998/10/06 21:12:14 asami Exp $ # $NetBSD: $ # # bsd.port.mk - 940820 Jordan K. Hubbard. @@ -2027,6 +2027,7 @@ generate-plist: .endif .endfor @${SED} ${_sedsubplist} ${PLIST} >> ${TMPPLIST} +.if !defined(NO_FILTER_SHLIBS) .if (${PORTOBJFORMAT} == "aout") @${SED} -e 's,\(/lib.*\.so\.[0-9]*\)$$,\1.0,' ${TMPPLIST} > ${TMPPLIST}.tmp .else @@ -2034,6 +2035,7 @@ generate-plist: .endif @${MV} -f ${TMPPLIST}.tmp ${TMPPLIST} .endif +.endif ${TMPPLIST}: @cd ${.CURDIR} && ${MAKE} generate-plist |