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 /editors/xemacs-current | |
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 'editors/xemacs-current')
-rw-r--r-- | editors/xemacs-current/PLIST | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/xemacs-current/PLIST b/editors/xemacs-current/PLIST index 28f52390db0..a0b5133fd82 100644 --- a/editors/xemacs-current/PLIST +++ b/editors/xemacs-current/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2002/03/28 19:15:20 magick Exp $ +@comment $NetBSD: PLIST,v 1.4 2002/06/26 10:29:41 seb Exp $ bin/xemacs-b2m bin/xemacs-ctags bin/ellcc @@ -1514,10 +1514,10 @@ man/man1/xemacs.1 @dirrm lib/${EMACSVER}/${MACHINE_GNU_PLATFORM} @dirrm lib/${EMACSVER}/info @dirrm lib/${EMACSVER} -@exec mkdir -p /var/tmp/xemacs.lock && chmod 1777 /var/tmp/xemacs.lock +@exec ${MKDIR} /var/tmp/xemacs.lock && chmod 1777 /var/tmp/xemacs.lock @unexec rm -rf /var/tmp/xemacs.lock -@exec mkdir -p lib/xemacs/site-lisp -@exec mkdir -p lib/xemacs/site-modules +@exec ${MKDIR} %D/lib/xemacs/site-lisp +@exec ${MKDIR} %D/lib/xemacs/site-modules @dirrm lib/xemacs/site-lisp @dirrm lib/xemacs/site-modules @dirrm lib/xemacs |