diff options
author | skrll <skrll> | 2002-02-15 10:12:28 +0000 |
---|---|---|
committer | skrll <skrll> | 2002-02-15 10:12:28 +0000 |
commit | 776a33b09bbd737dcfa1ffef38c8b5b383b0d0c4 (patch) | |
tree | d8c5da963aaf61f579edc82f096cfa181c02c55b /time | |
parent | eee5ea82bdaedb5f556b37f1abd1e775778ada87 (diff) | |
download | pkgsrc-776a33b09bbd737dcfa1ffef38c8b5b383b0d0c4.tar.gz |
mkdir -> ${MKDIR}
rmdir -> ${RMDIR}
rm -> ${RM} (${RM} added to PLIST_SUBST)
chmod -> ${CHMOD}
chown -> ${CHOWN}
Diffstat (limited to 'time')
-rw-r--r-- | time/pcal/PLIST | 4 | ||||
-rw-r--r-- | time/plan/PLIST | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/time/pcal/PLIST b/time/pcal/PLIST index 6144ab21b6b..1eb92a38a6b 100644 --- a/time/pcal/PLIST +++ b/time/pcal/PLIST @@ -1,8 +1,8 @@ -@comment $NetBSD: PLIST,v 1.1 2001/10/31 22:19:10 zuntum Exp $ +@comment $NetBSD: PLIST,v 1.2 2002/02/15 10:13:01 skrll Exp $ bin/pcal libexec/cgi-bin/pcal.cgi man/man1/pcal.1 share/doc/ReadMe.pcal share/httpd/htdocs/pcal.html share/httpd/htdocs/pcalw.html -@unexec rmdir -p %D/share/httpd/htdocs 2>/dev/null || true +@unexec ${RMDIR} -p %D/share/httpd/htdocs 2>/dev/null || true diff --git a/time/plan/PLIST b/time/plan/PLIST index defb64f1b28..156ab91f714 100644 --- a/time/plan/PLIST +++ b/time/plan/PLIST @@ -1,12 +1,12 @@ -@comment $NetBSD: PLIST,v 1.1 2001/10/31 22:19:12 zuntum Exp $ +@comment $NetBSD: PLIST,v 1.2 2002/02/15 10:13:01 skrll Exp $ bin/plan libexec/plan/pland libexec/plan/notifier libexec/plan/netplan libexec/plan/plan_cal.ps -@exec mkdir -p %D/libexec/plan/netplan.dir && chmod 700 %D/libexec/plan/netplan.dir && chown 32767:39 %D/libexec/plan/netplan.dir -@unexec rmdir %D/libexec/plan/netplan.dir 2>/dev/null || echo "==> %D/libexec/plan/netplan.dir not empty. You should remove it manually if it's no longer needed." -@unexec rmdir %D/libexec/plan 2>/dev/null || true +@exec ${MKDIR} -p %D/libexec/plan/netplan.dir && ${CHMOD} 700 %D/libexec/plan/netplan.dir && ${CHOWN} 32767:39 %D/libexec/plan/netplan.dir +@unexec ${RMDIR} %D/libexec/plan/netplan.dir 2>/dev/null || echo "==> %D/libexec/plan/netplan.dir not empty. You should remove it manually if it's no longer needed." +@unexec ${RMDIR} %D/libexec/plan 2>/dev/null || true man/man1/plan.1 man/man1/netplan.1 man/man4/plan.4 |