diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-23 04:23:59 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-23 04:23:59 +0000 |
commit | 535add65ac98d0ca871df3e8438ff56ba9129bcc (patch) | |
tree | 760c5b47c254af152605b0ddb356af68f100067f /lang/modula-3-lib | |
parent | Upgrade to zircon-1.18.223 (diff) |
grep -> ${GREP}
true -> ${TRUE}
false -> ${FALSE}
Diffstat (limited to 'lang/modula-3-lib')
-rw-r--r-- | lang/modula-3-lib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/modula-3-lib/Makefile b/lang/modula-3-lib/Makefile index 17eeb2a937fb..8da98bf7a1bd 100644 --- a/lang/modula-3-lib/Makefile +++ b/lang/modula-3-lib/Makefile @@ -3,7 +3,7 @@ # Date created: 28 Oct 1996 # Whom: John Polstra <jdp@polstra.com> # -# $Id: Makefile,v 1.15 1999/08/22 18:58:51 mharo Exp $ +# $Id: Makefile,v 1.16 1999/08/22 23:32:52 mharo Exp $ # DISTNAME= modula-3-lib-3.6 @@ -136,10 +136,10 @@ do-install: @echo "Installing shared libraries" @cd ${temp_prefix}; \ umask 022; \ - grep '^lib/m3/' ${PLIST}.real | \ + ${GREP} '^lib/m3/' ${PLIST}.real | \ cpio -dump -R ${BINOWN}.${BINGRP} ${PREFIX} @cd ${PREFIX}; \ - grep '^lib/m3/' ${PLIST}.real | xargs ${CHMOD} go=u-w; \ + ${GREP} '^lib/m3/' ${PLIST}.real | xargs ${CHMOD} go=u-w; \ find -X lib/m3 -type d | xargs ${CHOWN} ${BINOWN}.${BINGRP}; \ find -X lib/m3 -type d | xargs ${CHMOD} 755 @echo "Installing copyright notice" |