summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorjmmv <jmmv>2003-09-30 14:43:52 +0000
committerjmmv <jmmv>2003-09-30 14:43:52 +0000
commit4210839fbc15a05149e05088b5a970d8f814de7c (patch)
tree45f9b7e1275d6f3d6eeb1e7e1b515488c4c7ae16 /audio
parent363a7082c975c6d4362dc7fb1ad8ed35258cbcad (diff)
downloadpkgsrc-4210839fbc15a05149e05088b5a970d8f814de7c.tar.gz
s/FILES/EGFILES/ for clarity, and undefine the iteration variable after the
loop has finished.
Diffstat (limited to 'audio')
-rw-r--r--audio/icecast/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/audio/icecast/Makefile b/audio/icecast/Makefile
index d4a6e24e659..6f083ad2f5c 100644
--- a/audio/icecast/Makefile
+++ b/audio/icecast/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2003/09/30 10:30:33 xtraeme Exp $
+# $NetBSD: Makefile,v 1.13 2003/09/30 14:43:52 jmmv Exp $
#
DISTNAME= icecast-1.3.12
@@ -29,11 +29,12 @@ LIBS+= -lutil
PTHREAD_OPTS+= native
EGDIR= ${PREFIX}/share/examples/icecast
-FILES= groups.aut mounts.aut users.aut icecast.conf
+EGFILES= groups.aut mounts.aut users.aut icecast.conf
-.for F in ${FILES}
-CONF_FILES+= ${EGDIR}/${F}.dist ${PKG_SYSCONFDIR}/${F}
+.for f in ${EGFILES}
+CONF_FILES+= ${EGDIR}/${f}.dist ${PKG_SYSCONFDIR}/${f}
.endfor
+.undef f
.include "../../devel/readline/buildlink2.mk"
.include "../../lang/python/application.mk"