summaryrefslogtreecommitdiff
path: root/audio/icecast
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2003-09-30 14:43:52 +0000
committerjmmv <jmmv@pkgsrc.org>2003-09-30 14:43:52 +0000
commit92189c79cac5ea923cd9f582b6807990ee82a1d3 (patch)
tree45f9b7e1275d6f3d6eeb1e7e1b515488c4c7ae16 /audio/icecast
parent5d7012ba16af77cfff03646a7f2f9d0b70593dc0 (diff)
downloadpkgsrc-92189c79cac5ea923cd9f582b6807990ee82a1d3.tar.gz
s/FILES/EGFILES/ for clarity, and undefine the iteration variable after the
loop has finished.
Diffstat (limited to 'audio/icecast')
-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"