diff options
author | skrll <skrll@pkgsrc.org> | 2002-02-15 10:12:28 +0000 |
---|---|---|
committer | skrll <skrll@pkgsrc.org> | 2002-02-15 10:12:28 +0000 |
commit | 08bdd44549284c310d01f61b15936669a2f75753 (patch) | |
tree | d8c5da963aaf61f579edc82f096cfa181c02c55b /graphics/gimp | |
parent | 2d3b54203a3be6ac17d82606e631bd2cdb84308c (diff) | |
download | pkgsrc-08bdd44549284c310d01f61b15936669a2f75753.tar.gz |
mkdir -> ${MKDIR}
rmdir -> ${RMDIR}
rm -> ${RM} (${RM} added to PLIST_SUBST)
chmod -> ${CHMOD}
chown -> ${CHOWN}
Diffstat (limited to 'graphics/gimp')
-rw-r--r-- | graphics/gimp/PLIST | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/gimp/PLIST b/graphics/gimp/PLIST index aea183f7f9a..c6e10b07add 100644 --- a/graphics/gimp/PLIST +++ b/graphics/gimp/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2002/02/13 19:50:06 drochner Exp $ +@comment $NetBSD: PLIST,v 1.3 2002/02/15 10:12:43 skrll Exp $ bin/escputil bin/escputil-1.2 bin/gimp @@ -1668,7 +1668,7 @@ share/locale/zh_TW/LC_MESSAGES/gimp.mo @dirrm share/gimp/1.2/brushes @dirrm share/gimp/1.2 @dirrm share/gimp -@unexec rmdir %D/share/aclocal 2>/dev/null || true +@unexec ${RMDIR} %D/share/aclocal 2>/dev/null || true @dirrm lib/gimp/1.2/plug-ins @dirrm lib/gimp/1.2/modules @dirrm lib/gimp/1.2 @@ -1678,4 +1678,4 @@ share/locale/zh_TW/LC_MESSAGES/gimp.mo @dirrm etc/gimp/1.2 @dirrm etc/gimp @exec test %D = ${LOCALBASE} || ln -s %D/share/aclocal/gimp.m4 ${LOCALBASE}/share/aclocal/gimp.m4 -@unexec test %D = ${LOCALBASE} || rm ${LOCALBASE}/share/aclocal/gimp.m4 +@unexec test %D = ${LOCALBASE} || ${RM} ${LOCALBASE}/share/aclocal/gimp.m4 |