mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Style fix (use naked commands).
Reported by: obrien
This commit is contained in:
parent
482ff78560
commit
7fc2d1dfc0
1 changed files with 3 additions and 7 deletions
|
|
@ -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})
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue