diff options
author | rillig <rillig@pkgsrc.org> | 2005-05-22 21:43:22 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-05-22 21:43:22 +0000 |
commit | 4628505e04ca28aa5fa8dd8b43072a807a60615c (patch) | |
tree | e151ed2e908f9931cd552331ceb36ee25e7b8e01 /sysutils | |
parent | ab4df27f258fdfedec94729c5ea08b9442301637 (diff) | |
download | pkgsrc-4628505e04ca28aa5fa8dd8b43072a807a60615c.tar.gz |
Replaced $f with ${f} to emphasize a Makefile variable is meant, not a
shell variable.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/gnome-vfs2/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/gnome-vfs2/Makefile.common b/sysutils/gnome-vfs2/Makefile.common index 9f022d7a429..99c47bc2aab 100644 --- a/sysutils/gnome-vfs2/Makefile.common +++ b/sysutils/gnome-vfs2/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.17 2005/05/22 20:08:32 jlam Exp $ +# $NetBSD: Makefile.common,v 1.18 2005/05/22 21:43:22 rillig Exp $ # DISTNAME= gnome-vfs-2.10.1 @@ -40,7 +40,7 @@ PKG_SYSCONFSUBDIR= gnome-vfs-2.0 EGDIR= ${PREFIX}/share/examples/gnome-vfs-2.0 .for f in ${EGFILES} -CONF_FILES+= ${EGDIR}/$f ${PKG_SYSCONFDIR}/$f +CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f} .endfor .undef f |