From 7fc2d1dfc03c5758a3d3791b3104856786cb60f5 Mon Sep 17 00:00:00 2001 From: Florent Thoumie Date: Mon, 16 Jun 2008 09:15:27 +0000 Subject: [PATCH] Style fix (use naked commands). Reported by: obrien --- usr.sbin/pkg_install/Makefile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/usr.sbin/pkg_install/Makefile b/usr.sbin/pkg_install/Makefile index eabb3ffa87d..bf1a2135cc7 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 -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})