Summary: | [MAINTAINER] net-mgmt/netdisco: [SUMMARIZE CHANGES] | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | geoffroy desvernay <dgeo> | ||||
Component: | Individual Port(s) | Assignee: | Lars Engels <lme> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | CC: | dgeo | ||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
geoffroy desvernay
2013-07-02 16:40:01 UTC
Responsible Changed From-To: freebsd-ports-bugs->lme I'll take it. Author: lme Date: Tue Jul 2 16:59:24 2013 New Revision: 322181 URL: http://svnweb.freebsd.org/changeset/ports/322181 Log: Fix a syntax problem with mibs directories list containing spaces instead of colons. PR: ports/180203 Submitted by: maintainer Modified: head/net-mgmt/netdisco/Makefile Modified: head/net-mgmt/netdisco/Makefile ============================================================================== --- head/net-mgmt/netdisco/Makefile Tue Jul 2 16:54:14 2013 (r322180) +++ head/net-mgmt/netdisco/Makefile Tue Jul 2 16:59:24 2013 (r322181) @@ -63,11 +63,8 @@ MIBSDIR= ${PREFIX}/share/netdisco-mibs RUN_DEPENDS+= ${MIBSDIR}/mib_index.txt:${PORTSDIR}/net-mgmt/netdisco-mibs BUILD_DEPENDS+= ${MIBSDIR}/mib_index.txt:${PORTSDIR}/net-mgmt/netdisco-mibs . include "${.CURDIR}/../netdisco-mibs/bsd.port.netdisco.mk" -MIBINCLUDES= -. for mib in ${MIBDIRS} -MIBINCLUDES+= ${MIBSDIR}/${mib}, -. endfor -MIBINCLUDES:=${MIBINCLUDES:S/,$//} +MIBINCLUDES!=${ECHO} \"${MIBDIRS:S/^/${MIBSDIR}\//}\" +MIBINCLUDES:=${MIBINCLUDES:S/ /:/g:S/"//g} .else MIBINCLUDES="#please add here mibs dirs list (at least snmp and rfc ones)" .endif _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Committed. Thanks! |