diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-22 23:33:47 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-22 23:33:47 +0000 |
commit | 235481b52a44969361f4c688e6e9d10798bd35d9 (patch) | |
tree | d4069fbea1d4f696753c9b5ab1500babadc62de2 /emulators | |
parent | make figlist and showfigfonts executable (diff) |
awk -> ${AWK}
basename -> ${BASENAME}
cat -> ${CAT}
cp -> ${CP}
ldconfig -> ${LDCONFIG}
mkdir -> ${MKDIR}
Notes
Notes:
svn path=/head/; revision=20898
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/bsvc/Makefile | 6 | ||||
-rw-r--r-- | emulators/vgb/Makefile | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/emulators/bsvc/Makefile b/emulators/bsvc/Makefile index 7f7ba0917ef7..15c60228223c 100644 --- a/emulators/bsvc/Makefile +++ b/emulators/bsvc/Makefile @@ -3,7 +3,7 @@ # Date created: 03-Mar-1997 # Whom: tenser # -# $Id: Makefile,v 1.7 1998/08/07 23:56:18 asami Exp $ +# $Id: Makefile,v 1.8 1998/10/06 05:18:00 asami Exp $ # DISTNAME= bsvc-2.0 @@ -21,7 +21,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/src WISH= wish4.1 pre-patch: - @awk ' \ + @${AWK} ' \ { \ if (/^## Makefile/) { \ print "## Makefile.FreeBSD - System Dependent Makefile for FreeBSD" \ @@ -31,7 +31,7 @@ pre-patch: }' < ${WRKSRC}/Makefile.ULTRIX > ${WRKSRC}/Makefile post-patch: - @awk ' \ + @${AWK} ' \ { \ if (/PROJECT_BASE/ && /AWK_CHANGE_ME/) { \ print "PROJECT_BASE='"${WRKDIR}/${DISTNAME}"'" \ diff --git a/emulators/vgb/Makefile b/emulators/vgb/Makefile index 7ccf160e7c74..e89acc587b0a 100644 --- a/emulators/vgb/Makefile +++ b/emulators/vgb/Makefile @@ -3,7 +3,7 @@ # Date created: 31 October 1996 # Whom: Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp> # -# $Id: Makefile,v 1.5 1998/08/05 09:30:50 asami Exp $ +# $Id: Makefile,v 1.6 1999/01/12 16:51:11 vanilla Exp $ # DISTNAME= GB @@ -19,7 +19,7 @@ CONFIGURE_ENV= X11BASE=${X11BASE} do-install: @${INSTALL_PROGRAM} ${WRKSRC}/gblist ${PREFIX}/bin - @mkdir -p ${PREFIX}/libexec/VGB ${PREFIX}/share/VGB + @${MKDIR} ${PREFIX}/libexec/VGB ${PREFIX}/share/VGB @${INSTALL_PROGRAM} ${WRKSRC}/vgb ${PREFIX}/libexec/VGB @${INSTALL_DATA} ${WRKSRC}/CART.GB ${PREFIX}/share/VGB @${INSTALL_SCRIPT} ${WRKSRC}/vgb.sh ${PREFIX}/bin/vgb |