diff options
author | wiz <wiz@pkgsrc.org> | 1999-12-29 01:41:00 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 1999-12-29 01:41:00 +0000 |
commit | f620f1ac583caf0a79912b4bd5ce3efafb26093d (patch) | |
tree | 82e432bb417606be0e2b04c0bb0fa848366f8b39 /emulators/freebsd_lib | |
parent | 8d5ea0675280182edc202a5fac9947944f38be62 (diff) | |
download | pkgsrc-f620f1ac583caf0a79912b4bd5ce3efafb26093d.tar.gz |
replaced some commands by their ${COMMAND} counterparts,
reordered lines for fewer pkglint warnings
Diffstat (limited to 'emulators/freebsd_lib')
-rw-r--r-- | emulators/freebsd_lib/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/emulators/freebsd_lib/Makefile b/emulators/freebsd_lib/Makefile index 9fb7354b476..31a0245eef7 100644 --- a/emulators/freebsd_lib/Makefile +++ b/emulators/freebsd_lib/Makefile @@ -1,13 +1,14 @@ -# $NetBSD: Makefile,v 1.6 1999/05/24 20:39:40 tv Exp $ +# $NetBSD: Makefile,v 1.7 1999/12/29 01:41:00 wiz Exp $ # DISTNAME= freebsd_lib-2.2.7 CATEGORIES= emulators MASTER_SITES= http://www.flame.org/NetBSD/ -ONLY_FOR_PLATFORM= NetBSD-*-i386 MAINTAINER= packages@netbsd.org +ONLY_FOR_PLATFORM= NetBSD-*-i386 + # # The distfile is distributed under the GPL, so no re-distribution of # binaries without source. @@ -23,9 +24,9 @@ NO_WRKSUBDIR= yes do-install: @${INSTALL_DATA_DIR} ${PREFIX}/emul/freebsd - @(cd ${WRKSRC} && find usr -type d -print) | \ + @(cd ${WRKSRC} && ${FIND} usr -type d -print) | \ (cd ${PREFIX}/emul/freebsd && xargs ${INSTALL_DATA_DIR}) - @cd ${WRKSRC} && for file in `find usr -name '*.*' -print`; do \ + @cd ${WRKSRC} && for file in `${FIND} usr -name '*.*' -print`; do \ ${INSTALL_DATA} $$file ${PREFIX}/emul/freebsd/$$file; \ done @${SETENV} PKG_PREFIX="${PREFIX}" ${SH} ${INSTALL_FILE} - POST-INSTALL |