diff options
author | rillig <rillig@pkgsrc.org> | 2005-10-23 21:54:35 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-10-23 21:54:35 +0000 |
commit | 3675f1bb3de5c6b4c2b952b74d1e196889111368 (patch) | |
tree | cc7086d37f8d9e18317ce6a81d330db4a9c8f2c5 /wm | |
parent | 11b89219374e49e911691244197e89f21c651679 (diff) | |
download | pkgsrc-3675f1bb3de5c6b4c2b952b74d1e196889111368.tar.gz |
Replaced $f with ${f} to fix some pkglint warnings.
Diffstat (limited to 'wm')
-rw-r--r-- | wm/ion/Makefile | 5 | ||||
-rw-r--r-- | wm/ion3-devel/Makefile | 7 | ||||
-rw-r--r-- | wm/weewm/Makefile | 4 |
3 files changed, 7 insertions, 9 deletions
diff --git a/wm/ion/Makefile b/wm/ion/Makefile index 4916d3bcc77..ac55cc97191 100644 --- a/wm/ion/Makefile +++ b/wm/ion/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2005/09/04 05:00:36 jlam Exp $ +# $NetBSD: Makefile,v 1.25 2005/10/23 21:57:22 rillig Exp $ # DISTNAME= ion-2-20040729 @@ -30,9 +30,8 @@ EGFILES= floatws.lua ion-bindings.lua ion-menus.lua \ query.lua draw.lua pwm.lua pwm-bindings.lua \ pwm-menus.lua dock.lua dock-draw.lua .for f in ${EGFILES} -CONF_FILES+= ${EGDIR}/$f ${PKG_SYSCONFDIR}/$f +CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f} .endfor -.undef f INSTALLATION_DIRS= bin lib/ion libexec/ion man/man1 INSTALLATION_DIRS+= share/doc/ion share/examples/ion share/ion diff --git a/wm/ion3-devel/Makefile b/wm/ion3-devel/Makefile index 1750047e1b9..ba57006f211 100644 --- a/wm/ion3-devel/Makefile +++ b/wm/ion3-devel/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2005/09/04 05:00:36 jlam Exp $ +# $NetBSD: Makefile,v 1.6 2005/10/23 21:59:59 rillig Exp $ # DISTNAME= ion-3ds-20040906 @@ -35,9 +35,8 @@ EGFILES= cfg_bindings.lua cfg_dock.lua cfg_floatws.lua \ look_greyviolet.lua look_ios.lua \ look_simpleblue.lua look_wheat2.lua .for f in ${EGFILES} -CONF_FILES+= ${EGDIR}/$f ${PKG_SYSCONFDIR}/$f +CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f} .endfor -.undef f .include "../../devel/gettext-lib/buildlink3.mk" .include "../../lang/lua/buildlink3.mk" @@ -48,4 +47,4 @@ CONF_FILES+= ${EGDIR}/$f ${PKG_SYSCONFDIR}/$f # and ion3's autoconf is rather broken in the way it auto-configures # itself for gettext. Eventually ion3 should be fixed, but right now # it is not really possible. -LIBS= +LIBS= # none diff --git a/wm/weewm/Makefile b/wm/weewm/Makefile index 555ecee2100..fa4783e135d 100644 --- a/wm/weewm/Makefile +++ b/wm/weewm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2005/06/17 03:50:39 jlam Exp $ +# $NetBSD: Makefile,v 1.5 2005/10/23 22:00:46 rillig Exp $ # DISTNAME= weewm-0.0.2 @@ -26,7 +26,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/examples/keys.rc ${EXAMPLESDIR} ${INSTALL_DATA_DIR} ${DOCDIR} .for f in AUTHORS FAQ README - ${INSTALL_DATA} ${WRKSRC}/$f ${DOCDIR} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCDIR} .endfor .include "../../mk/bsd.pkg.mk" |