diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-06-18 09:36:13 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-06-18 09:36:13 +0000 |
commit | 8b10e5fbd0de14f3e60c819ae6f61134802dde65 (patch) | |
tree | ac785262c49c278d4b10292ef6b70ea50455baf7 /net/net-snmp | |
parent | Back out LDCONFIG_DIRS change -- they don't work with a.out libs. (diff) |
The port assigns PLIST_SUB after <bsd.port.pre.mk> is included, so substitution
of %%PREFIX%% for ldconfig didn't work.
Submitted by: Makoto MATSUSHITA <matusita@jp.freebsd.org>
Diffstat (limited to 'net/net-snmp')
-rw-r--r-- | net/net-snmp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/net-snmp/Makefile b/net/net-snmp/Makefile index e43dbce6be3e..f7de629c1338 100644 --- a/net/net-snmp/Makefile +++ b/net/net-snmp/Makefile @@ -47,8 +47,8 @@ STARTUP_FILE= ${PREFIX}/etc/rc.d/snmpd.sh.sample .include <bsd.port.pre.mk> -SHLIB_VERSION=4 -PLIST_SUB= shlib=${SHLIB_VERSION} +SHLIB_VERSION= 4 +PLIST_SUB+= shlib=${SHLIB_VERSION} post-patch: @${CP} ${FILESDIR}/freebsd4.h ${WRKSRC}/s |