diff options
author | ghen <ghen@pkgsrc.org> | 2006-08-02 12:31:54 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2006-08-02 12:31:54 +0000 |
commit | db11ec2bf90b6b62e1aba9c5cd69af232fd631ce (patch) | |
tree | 4ced09ab7036854ba67e1ea00bc5e75af7b47b5a /sysutils | |
parent | a6a6efd22a9d5e1f8eccbef00117c15300ecf887 (diff) | |
download | pkgsrc-db11ec2bf90b6b62e1aba9c5cd69af232fd631ce.tar.gz |
Fix more pkglint warnings:
- The shell command "${MKDIR}" should not be hidden.
- The INSTALL_*_DIR commands can only handle one directory at a time.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/ups-nut/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sysutils/ups-nut/Makefile b/sysutils/ups-nut/Makefile index c7fa129b789..a39b348ba37 100644 --- a/sysutils/ups-nut/Makefile +++ b/sysutils/ups-nut/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2006/08/02 12:30:22 ghen Exp $ +# $NetBSD: Makefile,v 1.44 2006/08/02 12:31:54 ghen Exp $ # DISTNAME= nut-2.0.3 @@ -66,14 +66,15 @@ OWN_DIRS= ${NUT_CONFDIR} OWN_DIRS_PERMS= ${NUT_STATEDIR} ${NUT_USER} ${NUT_GROUP} 0770 pre-install: - @${MKDIR} ${NUT_STATEDIR} - @${MKDIR} ${NUT_DRVDIR} - @${CHOWN} ${NUT_USER} ${NUT_STATEDIR} + ${MKDIR} ${NUT_STATEDIR} + ${MKDIR} ${NUT_DRVDIR} + ${CHOWN} ${NUT_USER} ${NUT_STATEDIR} ${INSTALL_DATA_DIR} ${NUT_EGDIR} post-install: ${INSTALL_DATA_DIR} ${NUT_DOCDIR} - ${INSTALL_DATA_DIR} ${NUT_DOCDIR}/cables ${NUT_DOCDIR}/drivers + ${INSTALL_DATA_DIR} ${NUT_DOCDIR}/cables + ${INSTALL_DATA_DIR} ${NUT_DOCDIR}/drivers for f in CHANGES COPYING CREDITS NEWS README INSTALL UPGRADING; do \ ${INSTALL_DATA} ${WRKSRC}/$$f ${NUT_DOCDIR}; \ done |