From: thorpej Date: Fri, 18 Oct 1996 02:37:51 +0000 (+0000) Subject: Use ${INSTALL}. X-Git-Url: https://git.cameronkatri.com/bsdgames-darwin.git/commitdiff_plain/d699982161fcf04c378aee3bd4f787d410ff6ff1?ds=sidebyside Use ${INSTALL}. --- diff --git a/atc/Makefile b/atc/Makefile index 8bf902a6..363c811e 100644 --- a/atc/Makefile +++ b/atc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 1995/03/21 15:03:38 cgd Exp $ +# $NetBSD: Makefile,v 1.10 1996/10/18 02:43:36 thorpej Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= atc @@ -23,7 +23,7 @@ beforeinstall: else \ true ; \ fi - (cd ${.CURDIR}/games; install -c -o ${BINOWN} -g ${BINGRP} -m 400 \ + (cd ${.CURDIR}/games; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 400 \ ${GAMES} ${DESTDIR}/usr/share/games/atc) .include diff --git a/boggle/boggle/Makefile b/boggle/boggle/Makefile index 3ff5f56e..0ef7b1df 100644 --- a/boggle/boggle/Makefile +++ b/boggle/boggle/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 1995/03/21 12:14:28 cgd Exp $ +# $NetBSD: Makefile,v 1.4 1996/10/18 02:44:27 thorpej Exp $ # @(#)Makefile 8.1 (Berkeley) 6/11/93 PROG= boggle @@ -9,7 +9,7 @@ HIDEGAME=hidegame MAN= boggle.6 beforeinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/helpfile \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/helpfile \ ${DESTDIR}/usr/share/games/boggle/helpfile .include "../../Makefile.inc" diff --git a/caesar/Makefile b/caesar/Makefile index c2fefd8f..b2100b11 100644 --- a/caesar/Makefile +++ b/caesar/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 1995/03/21 15:08:18 cgd Exp $ +# $NetBSD: Makefile,v 1.5 1996/10/18 02:45:01 thorpej Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= caesar @@ -8,7 +8,7 @@ LDADD= -lm MLINKS= caesar.6 rot13.6 beforeinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/rot13.sh ${DESTDIR}/usr/games/rot13 .include diff --git a/cribbage/Makefile b/cribbage/Makefile index 69c60d77..948101b0 100644 --- a/cribbage/Makefile +++ b/cribbage/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 1995/03/21 15:08:39 cgd Exp $ +# $NetBSD: Makefile,v 1.6 1996/10/18 02:45:34 thorpej Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= cribbage @@ -9,7 +9,7 @@ MAN= cribbage.6 HIDEGAME=hidegame beforeinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/cribbage.n \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/cribbage.n \ ${DESTDIR}/usr/share/games/cribbage.instr .include diff --git a/fish/Makefile b/fish/Makefile index 61ab5d16..ad478edb 100644 --- a/fish/Makefile +++ b/fish/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 1995/03/23 08:28:14 cgd Exp $ +# $NetBSD: Makefile,v 1.7 1996/10/18 02:46:02 thorpej Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= fish @@ -6,7 +6,7 @@ MAN= fish.6 HIDEGAME=hidegame beforeinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/fish.instr \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/fish.instr \ ${DESTDIR}/usr/share/games/fish.instr .include diff --git a/fortune/datfiles/Makefile b/fortune/datfiles/Makefile index a9911c1d..c8832b36 100644 --- a/fortune/datfiles/Makefile +++ b/fortune/datfiles/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 1996/02/29 00:21:16 jtc Exp $ +# $NetBSD: Makefile,v 1.16 1996/10/18 02:46:35 thorpej Exp $ # @(#)Makefile 8.2 (Berkeley) 4/19/94 SRCS= fortunes fortunes2 startrek zippy @@ -25,9 +25,9 @@ STRFILE!=cd $(.CURDIR)/../strfile; \ all: ${BLDS} install: ${SRCS} ${BLDS} - (cd ${.CURDIR} && install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ + (cd ${.CURDIR} && ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ ${SRCS} ${DESTDIR}/usr/share/games/fortune) - install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${BLDS} \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${BLDS} \ ${DESTDIR}/usr/share/games/fortune fortunes.dat fortunes2.dat fortunes2-o.dat limerick.dat startrek.dat zippy.dat: diff --git a/hack/Makefile b/hack/Makefile index 4fa0fc04..8a44e943 100644 --- a/hack/Makefile +++ b/hack/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 1995/03/23 08:29:07 cgd Exp $ +# $NetBSD: Makefile,v 1.17 1996/10/18 02:47:18 thorpej Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= hack @@ -30,11 +30,11 @@ makedefs: makedefs.c ${CC} ${CFLAGS} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${.CURDIR}/${.PREFIX}.c ${LDADD} beforeinstall: - install -c -o games -g games -m 600 /dev/null \ + ${INSTALL} -c -o games -g games -m 600 /dev/null \ ${DESTDIR}/var/games/hackdir/perm - install -c -o games -g games -m 600 /dev/null \ + ${INSTALL} -c -o games -g games -m 600 /dev/null \ ${DESTDIR}/var/games/hackdir/record - install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/help \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/help \ ${.CURDIR}/hh ${.CURDIR}/data ${DESTDIR}/var/games/hackdir rm -f ${DESTDIR}/var/games/hackdir/bones*