Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Jan 2017 06:58:17 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r312263 - in stable/10/usr.sbin/bsnmpd/modules: snmp_hostres snmp_mibII
Message-ID:  <201701160658.v0G6wHkY000129@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Mon Jan 16 06:58:16 2017
New Revision: 312263
URL: https://svnweb.freebsd.org/changeset/base/312263

Log:
  MFC r311740:
  
  Improve the smilint target in the hostres and mibII modules
  
  - Mark the smilint target .PHONY so it's always executed when requested
  - Leverage .PATH for BMIBS instead of spelling the path out longhand
    for them

Modified:
  stable/10/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile
  stable/10/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile
==============================================================================
--- stable/10/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile	Mon Jan 16 06:57:52 2017	(r312262)
+++ stable/10/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile	Mon Jan 16 06:58:16 2017	(r312263)
@@ -77,6 +77,7 @@ LDADD=	-lkvm -ldevinfo -lm -lgeom -lmems
 printcap.So: printcap.c
 	${CC} ${PICFLAG} -DPIC ${CFLAGS:C/^-W.*//} -c ${.IMPSRC} -o ${.TARGET}
 
-smilint:
+smilint: .PHONY
+smilint: ${BMIBS}
 	env SMIPATH=.:/usr/share/snmp/mibs:/usr/local/share/snmp/mibs \
-	    smilint -c /dev/null -l6 -i group-membership BEGEMOT-HOSTRES-MIB
+	    smilint -c /dev/null -l6 -i group-membership ${.ALLSRC}

Modified: stable/10/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile
==============================================================================
--- stable/10/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile	Mon Jan 16 06:57:52 2017	(r312262)
+++ stable/10/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile	Mon Jan 16 06:58:16 2017	(r312263)
@@ -22,6 +22,7 @@ BMIBS=	BEGEMOT-IP-MIB.txt BEGEMOT-MIB2-M
 
 .include <bsd.snmpmod.mk>
 
-smilint:
+smilint: .PHONY
+smilint: ${BMIBS}
 	env SMIPATH=/usr/share/snmp/mibs:/usr/local/share/snmp/mibs \
-	    smilint -c /dev/null -l6 -i group-membership ${BMIBS:C/^/${CONTRIB}\/snmp_mibII\//}
+	    smilint -c /dev/null -l6 -i group-membership ${.ALLSRC}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701160658.v0G6wHkY000129>