diff options
author | rillig <rillig@pkgsrc.org> | 2005-10-23 21:45:57 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-10-23 21:45:57 +0000 |
commit | 11b89219374e49e911691244197e89f21c651679 (patch) | |
tree | 16673228d4b2f24e6c489dc091bed26d9d279aa3 /net/socks5 | |
parent | 50b01b115aa43c754300200f111b1e91d5b2d0a6 (diff) | |
download | pkgsrc-11b89219374e49e911691244197e89f21c651679.tar.gz |
Replaced $f with ${f} to fix a pkglint warning.
Diffstat (limited to 'net/socks5')
-rw-r--r-- | net/socks5/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/socks5/Makefile b/net/socks5/Makefile index 6de3bc793a4..7a9a5a10542 100644 --- a/net/socks5/Makefile +++ b/net/socks5/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2005/10/13 13:22:46 wiz Exp $ +# $NetBSD: Makefile,v 1.39 2005/10/23 21:49:01 rillig Exp $ DISTNAME= socks5-v1_0r2 PKGNAME= socks5-1.0.2 @@ -51,7 +51,7 @@ post-install: ${LN} -sf libsocks5_sh.so.0.0 ${PREFIX}/lib/libsocks5_sh.so ${INSTALL_DATA_DIR} ${EXAMPLE_DIR} .for f in ${EXAMPLE_FILES} - ${INSTALL_DATA} ${WRKSRC}/examples/$f ${EXAMPLE_DIR} + ${INSTALL_DATA} ${WRKSRC}/examples/${f} ${EXAMPLE_DIR} .endfor .include "../../mk/bsd.pkg.mk" |