diff options
author | wiz <wiz@pkgsrc.org> | 1999-12-28 05:28:26 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 1999-12-28 05:28:26 +0000 |
commit | ddcdf8acb75ab824d2f6fcc1f761352a24b6a719 (patch) | |
tree | 24c619a5cc2832228e2873391867798f057c26d0 /devel/libnet | |
parent | 06608aab4e74a2c7fe8ca9e6e771820f71a72bf1 (diff) | |
download | pkgsrc-ddcdf8acb75ab824d2f6fcc1f761352a24b6a719.tar.gz |
replaced some commands by their ${COMMAND} counterparts
Diffstat (limited to 'devel/libnet')
-rw-r--r-- | devel/libnet/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/libnet/Makefile b/devel/libnet/Makefile index 6a47caa5930..0e8eff244f8 100644 --- a/devel/libnet/Makefile +++ b/devel/libnet/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 1999/11/08 08:25:00 sakamoto Exp $ +# $NetBSD: Makefile,v 1.2 1999/12/28 05:28:26 wiz Exp $ # DISTNAME= libnet-1.0 @@ -26,8 +26,8 @@ post-install: ${PREFIX}/share/examples/libnet @${CP} ${PKGDIR}/PLIST ${PLIST_SRC} @(cd ${PREFIX}; \ - find ${DOCDIR} -type f >> ${PLIST_SRC}; \ - find ${DOCDIR} -type d| ${SED} -e 's|^|@dirrm |' | sort -r \ + ${FIND} ${DOCDIR} -type f >> ${PLIST_SRC}; \ + ${FIND} ${DOCDIR} -type d| ${SED} -e 's|^|@dirrm |' | sort -r \ >> ${PLIST_SRC}) .include "../../mk/bsd.pkg.mk" |