diff options
author | seb <seb> | 2002-06-26 10:29:33 +0000 |
---|---|---|
committer | seb <seb> | 2002-06-26 10:29:33 +0000 |
commit | ffae2d518c48d3d79fda3e02dcb0e79c3fbc1aef (patch) | |
tree | 9e5fcee06244c048489fb5197f01b82baef7be38 /www/htdig | |
parent | 57b861d2e101c9a13115d231f46b57c51e9caa28 (diff) | |
download | pkgsrc-ffae2d518c48d3d79fda3e02dcb0e79c3fbc1aef.tar.gz |
Substitute a couple of `mkdir' by `${MKDIR}'.
Remove `-p' from mkdir arguments, it is already part of ${MKDIR}.
While here substitute a couple of ${PREFIX} by `%D' in
`@exec ${MKDIR} ...' lines and add a couple of missing `%D' in such lines too!
Diffstat (limited to 'www/htdig')
-rw-r--r-- | www/htdig/PLIST | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/htdig/PLIST b/www/htdig/PLIST index e022a308f07..0e5f5b9f633 100644 --- a/www/htdig/PLIST +++ b/www/htdig/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2002/03/09 21:48:11 fredb Exp $ +@comment $NetBSD: PLIST,v 1.3 2002/06/26 10:30:07 seb Exp $ bin/htfuzzy bin/htdig bin/htdump @@ -53,9 +53,9 @@ share/htdig/common/synonyms share/htdig/common/synonyms.db share/htdig/common/root2word.db share/htdig/common/word2root.db -@exec mkdir -p ${PKG_SYSCONFDIR}/htdig +@exec ${MKDIR} ${PKG_SYSCONFDIR}/htdig @exec if [ ! -f ${PKG_SYSCONFDIR}/htdig/htdig.conf ]; then cp %D/share/examples/htdig/htdig.conf ${PKG_SYSCONFDIR}/htdig/htdig.conf; fi -@exec mkdir -p /var/db/htdig +@exec ${MKDIR} /var/db/htdig @unexec rmdir ${PKG_SYSCONFDIR}/htdig 2>/dev/null || true @unexec rmdir /var/db/htdig 2>/dev/null || true @dirrm share/htdig/common |