diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
commit | 89e9e517a9f1c97f22317b99b12b1133075eab02 (patch) | |
tree | faad1b92712e2988cd55bc71cc77494abb6ed655 /graphics/sketch/Makefile | |
parent | 164234dfead0f28fb873b763e6f378cb3313f426 (diff) | |
download | FreeBSD-ports-89e9e517a9f1c97f22317b99b12b1133075eab02.zip FreeBSD-ports-89e9e517a9f1c97f22317b99b12b1133075eab02.tar.gz |
chmod -> ${CHMOD}
chown -> ${CHOWN}
Diffstat (limited to 'graphics/sketch/Makefile')
-rw-r--r-- | graphics/sketch/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/sketch/Makefile b/graphics/sketch/Makefile index a9efb86..66d5082 100644 --- a/graphics/sketch/Makefile +++ b/graphics/sketch/Makefile @@ -3,7 +3,7 @@ # Date created: 04 November 1998 # Whom: Thomas Gellekum <tg@FreeBSD.ORG> # -# $Id: Makefile,v 1.4 1999/05/19 09:41:06 tg Exp $ +# $Id: Makefile,v 1.5 1999/08/06 08:45:21 tg Exp $ # DISTNAME= sketch-0.6.1 @@ -42,8 +42,8 @@ do-install: (cd ${WRKSRC}/Examples; tar cf - .) | (cd ${SKETCHEXDIR}; tar xf -) (cd ${SKETCHDIR}; python finishinst.py) ${SED} -e "s|@PREFIX@|${PREFIX}|g" < ${FILESDIR}/sketch.in > ${PREFIX}/bin/sketch - chmod +x ${PREFIX}/bin/sketch + ${CHMOD} +x ${PREFIX}/bin/sketch ${SED} -e "s|@PREFIX@|${PREFIX}|g" < ${FILESDIR}/sk2ps.in > ${PREFIX}/bin/sk2ps - chmod +x ${PREFIX}/bin/sk2ps + ${CHMOD} +x ${PREFIX}/bin/sk2ps .include <bsd.port.mk> |