diff options
author | brook <brook> | 2009-11-10 15:45:19 +0000 |
---|---|---|
committer | brook <brook> | 2009-11-10 15:45:19 +0000 |
commit | 0917554c13b75cc19f708d45a41bb5e7a2ab2f21 (patch) | |
tree | 036dfdfbf1514350fc0150d96228a17df0e6644d /www | |
parent | 36428146b23e7171d64cee26d6ca0b1da72d0ae8 (diff) | |
download | pkgsrc-0917554c13b75cc19f708d45a41bb5e7a2ab2f21.tar.gz |
Fix ambiguous of make variable: $f -> ${f}.
Diffstat (limited to 'www')
-rw-r--r-- | www/ganglia-webfrontend/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/ganglia-webfrontend/Makefile b/www/ganglia-webfrontend/Makefile index b8fa407c2f8..860fe597e2c 100644 --- a/www/ganglia-webfrontend/Makefile +++ b/www/ganglia-webfrontend/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2009/11/10 14:56:35 brook Exp $ +# $NetBSD: Makefile,v 1.11 2009/11/10 15:45:19 brook Exp $ # DISTNAME= ganglia-3.1.2 @@ -37,7 +37,7 @@ do-build: ${MKDIR} ${WRKDIR}/ganglia cd ${WRKSRC} && ${PAX} -rw . ${WRKDIR}/ganglia/ .for f in ${JUNKFILES} - ${RM} ${WRKDIR}/ganglia/$f + ${RM} ${WRKDIR}/ganglia/${f} .endfor do-install: |