diff options
author | flz <flz@FreeBSD.org> | 2008-06-16 09:15:27 +0000 |
---|---|---|
committer | flz <flz@FreeBSD.org> | 2008-06-16 09:15:27 +0000 |
commit | a47d4949f6ab345ae07843b7e20e8c9c9b88e614 (patch) | |
tree | ad1a4595ebe615ed5b1b4e04ce0fcf87c1e91707 /usr.sbin | |
parent | cd6153995abf64550edf6aa181572fadc49715a5 (diff) | |
download | FreeBSD-src-a47d4949f6ab345ae07843b7e20e8c9c9b88e614.zip FreeBSD-src-a47d4949f6ab345ae07843b7e20e8c9c9b88e614.tar.gz |
Style fix (use naked commands).
Reported by: obrien
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pkg_install/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/usr.sbin/pkg_install/Makefile b/usr.sbin/pkg_install/Makefile index eabb3ff..bf1a213 100644 --- a/usr.sbin/pkg_install/Makefile +++ b/usr.sbin/pkg_install/Makefile @@ -6,19 +6,15 @@ SUBDIR= lib add create delete info updating version .include <bsd.subdir.mk> -CP= /bin/cp -RM= /bin/rm -TAR= /usr/bin/tar - DATE!= grep PKG_INSTALL_VERSION ${.CURDIR}/lib/lib.h | sed 's|.*[ ]||' distfile: clean @(cd ${.CURDIR}/..; \ - ${CP} -r pkg_install pkg_install-${DATE}; \ - ${TAR} -czf pkg_install/pkg_install-${DATE}.tar.gz \ + cp -r pkg_install pkg_install-${DATE}; \ + tar -czf pkg_install/pkg_install-${DATE}.tar.gz \ --exclude .#* --exclude *~ --exclude CVS \ --exclude .svn --exclude pkg_install-*.tar.gz \ pkg_install-${DATE}; \ - ${RM} -rf pkg_install-${DATE}) + rm -rf pkg_install-${DATE}) |