diff options
author | rodent <rodent@pkgsrc.org> | 2013-04-06 13:24:18 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2013-04-06 13:24:18 +0000 |
commit | f565a1af87ccaccae3cfc89af55ee17f3d8ff47b (patch) | |
tree | 7e09ae380f09209fdebcf2ee8170c971a410c319 /net/openslp | |
parent | 45ba4e37fd8e682cf12febc192ee0302681bfa77 (diff) | |
download | pkgsrc-f565a1af87ccaccae3cfc89af55ee17f3d8ff47b.tar.gz |
".for variable names should not contain uppercase letters"
Diffstat (limited to 'net/openslp')
-rw-r--r-- | net/openslp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/openslp/Makefile b/net/openslp/Makefile index ba0441b1a2a..a10bf0ec6d2 100644 --- a/net/openslp/Makefile +++ b/net/openslp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2013/02/14 16:51:32 drochner Exp $ +# $NetBSD: Makefile,v 1.42 2013/04/06 13:24:19 rodent Exp $ DISTNAME= openslp-1.2.1 PKGREVISION= 6 @@ -25,8 +25,8 @@ EGDIR= ${PREFIX}/share/examples/${PKGBASE} CONFS= slp.conf slp.reg slp.spi CONF_FILES= # empty -.for FILE in ${CONFS} -CONF_FILES+= ${EGDIR}/${FILE} ${PKG_SYSCONFDIR}/${FILE} +.for file in ${CONFS} +CONF_FILES+= ${EGDIR}/${file} ${PKG_SYSCONFDIR}/${file} .endfor RCD_SCRIPTS= slpd |