diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
commit | 5281212be38447df70380d4e9e8cd0ef1cf11517 (patch) | |
tree | 655e734faae358d2c0edeefd08e9aeac6202b150 /textproc/html | |
parent | Assign USE_XLIB var. Any ports which use XLib needs it. (diff) |
chmod -> ${CHMOD}
chown -> ${CHOWN}
Diffstat (limited to 'textproc/html')
-rw-r--r-- | textproc/html/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/html/Makefile b/textproc/html/Makefile index ce58c1a1eec0..89ef8c88cbb4 100644 --- a/textproc/html/Makefile +++ b/textproc/html/Makefile @@ -3,7 +3,7 @@ # Date created: Sept 19, 1997 # Whom: jfieber # -# $Id: Makefile,v 1.3 1998/06/27 05:19:37 asami Exp $ +# $Id: Makefile,v 1.4 1999/02/11 16:01:08 jfieber Exp $ # DISTNAME= html-4.0b @@ -24,7 +24,7 @@ pre-install: do-install: @zcat ${DISTDIR}/${DISTFILES} |(cd ${INSTDIR}; pax -r) - @chmod ${SHAREMODE} `find ${INSTDIR} -type f` - @chown -R ${SHAREOWN}.${SHAREGRP} ${INSTDIR} + @${CHMOD} ${SHAREMODE} `find ${INSTDIR} -type f` + @${CHOWN} -R ${SHAREOWN}.${SHAREGRP} ${INSTDIR} .include <bsd.port.mk> |