summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/groff
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-07-25 00:37:58 +0000
committerbde <bde@FreeBSD.org>1995-07-25 00:37:58 +0000
commitf5284ed86d0500b99cc17d456bcee60b5ab265a5 (patch)
tree67449d23a48a9e1b2ffd0a92e0f11275368bb4b0 /gnu/usr.bin/groff
parent4325752c55741edf77fb2f1d08e1c059a8a3c225 (diff)
downloadFreeBSD-src-f5284ed86d0500b99cc17d456bcee60b5ab265a5.zip
FreeBSD-src-f5284ed86d0500b99cc17d456bcee60b5ab265a5.tar.gz
Change `install' to `${INSTALL}' so that default install flags can be
specified in the top level Makefiles.
Diffstat (limited to 'gnu/usr.bin/groff')
-rw-r--r--gnu/usr.bin/groff/Makefile.dev2
-rw-r--r--gnu/usr.bin/groff/font/Makefile.dev2
-rw-r--r--gnu/usr.bin/groff/indxbib/Makefile2
-rw-r--r--gnu/usr.bin/groff/nroff/Makefile4
-rw-r--r--gnu/usr.bin/groff/tmac/Makefile10
-rw-r--r--gnu/usr.bin/groff/troff/Makefile4
-rw-r--r--gnu/usr.bin/groff/xditview/Makefile2
7 files changed, 13 insertions, 13 deletions
diff --git a/gnu/usr.bin/groff/Makefile.dev b/gnu/usr.bin/groff/Makefile.dev
index 4f6948f..36c3f30 100644
--- a/gnu/usr.bin/groff/Makefile.dev
+++ b/gnu/usr.bin/groff/Makefile.dev
@@ -22,7 +22,7 @@ maninstall:
install:
for f in $(FONTFILES); do \
ff=$$f; test -f $$f || ff=${.CURDIR}/$$f || true; \
- install -c -o $(FONTOWN) -g $(FONTGRP) -m $(FONTMODE) $$ff \
+ $(INSTALL) -c -o $(FONTOWN) -g $(FONTGRP) -m $(FONTMODE) $$ff \
$(DESTDIR)$(DEVICEDIR)/$$f; \
done
.endif
diff --git a/gnu/usr.bin/groff/font/Makefile.dev b/gnu/usr.bin/groff/font/Makefile.dev
index 4f6948f..36c3f30 100644
--- a/gnu/usr.bin/groff/font/Makefile.dev
+++ b/gnu/usr.bin/groff/font/Makefile.dev
@@ -22,7 +22,7 @@ maninstall:
install:
for f in $(FONTFILES); do \
ff=$$f; test -f $$f || ff=${.CURDIR}/$$f || true; \
- install -c -o $(FONTOWN) -g $(FONTGRP) -m $(FONTMODE) $$ff \
+ $(INSTALL) -c -o $(FONTOWN) -g $(FONTGRP) -m $(FONTMODE) $$ff \
$(DESTDIR)$(DEVICEDIR)/$$f; \
done
.endif
diff --git a/gnu/usr.bin/groff/indxbib/Makefile b/gnu/usr.bin/groff/indxbib/Makefile
index be2bb8f..32282af 100644
--- a/gnu/usr.bin/groff/indxbib/Makefile
+++ b/gnu/usr.bin/groff/indxbib/Makefile
@@ -14,7 +14,7 @@ CLEANFILES+= ${MANDEPEND}
# Sigh... Hardcode it. - jkh
#
afterinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/eign \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/eign \
${DESTDIR}${SHAREDIR}/dict
.include "../Makefile.cfg"
diff --git a/gnu/usr.bin/groff/nroff/Makefile b/gnu/usr.bin/groff/nroff/Makefile
index 8998b2d..6758dd4 100644
--- a/gnu/usr.bin/groff/nroff/Makefile
+++ b/gnu/usr.bin/groff/nroff/Makefile
@@ -4,9 +4,9 @@ MANDEPEND= nroff.1
CLEANFILES+= ${MANDEPEND}
afterinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
$(.CURDIR)/nroff.sh $(DESTDIR)$(BINDIR)/nroff
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
$(.CURDIR)/psroff.sh $(DESTDIR)$(BINDIR)/psroff
.include <../Makefile.cfg>
diff --git a/gnu/usr.bin/groff/tmac/Makefile b/gnu/usr.bin/groff/tmac/Makefile
index 2c88f3b..c9ca259 100644
--- a/gnu/usr.bin/groff/tmac/Makefile
+++ b/gnu/usr.bin/groff/tmac/Makefile
@@ -22,26 +22,26 @@ MDOCFILES= doc-common doc-ditroff doc-nroff doc-syms
beforeinstall:
for f in ${FILES}; do \
- install -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
+ ${INSTALL} -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
${.CURDIR}/$$f ${DESTDIR}${TMACDIR}; \
done
sed -f ${.CURDIR}/strip.sed ${.CURDIR}/tmac.an >tmac.groff_an
- install -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
+ ${INSTALL} -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
tmac.groff_an ${DESTDIR}${TMACDIR}
for f in ${STRIPFILES}; do \
rm -f temp; \
sed -f ${.CURDIR}/strip.sed ${.CURDIR}/$$f >temp; \
- install -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
+ ${INSTALL} -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
temp ${DESTDIR}${TMACDIR}/$$f; \
done
for f in ${MDOCFILES}; do \
rm -f temp; \
sed -f ${.CURDIR}/strip.sed ${.CURDIR}/$$f >temp; \
- install -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
+ ${INSTALL} -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
temp ${DESTDIR}${MDOCDIR}/$$f; \
done
test -f ${DESTDIR}${TMACDIR}/man.local || \
- install -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
+ ${INSTALL} -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
${.CURDIR}/man.local ${DESTDIR}${TMACDIR}
.include "../Makefile.cfg"
diff --git a/gnu/usr.bin/groff/troff/Makefile b/gnu/usr.bin/groff/troff/Makefile
index 61a237c..fff2823 100644
--- a/gnu/usr.bin/groff/troff/Makefile
+++ b/gnu/usr.bin/groff/troff/Makefile
@@ -17,9 +17,9 @@ majorminor.cc: ${.CURDIR}/../VERSION
\"`sed -e 's/^[^.]*\.\([0-9]*\).*$$/\1/' ${.CURDIR}/../VERSION`\"\; >>$@
afterinstall:
- install -c -o bin -g bin -m 444 ${.CURDIR}/hyphen.us \
+ ${INSTALL} -c -o bin -g bin -m 444 ${.CURDIR}/hyphen.us \
${DESTDIR}${tmacdir}/hyphen.us
- install -c -o bin -g bin -m 444 ${.CURDIR}/hyphen.us-ru \
+ ${INSTALL} -c -o bin -g bin -m 444 ${.CURDIR}/hyphen.us-ru \
${DESTDIR}${tmacdir}/hyphen.us-ru
.include "../Makefile.cfg"
diff --git a/gnu/usr.bin/groff/xditview/Makefile b/gnu/usr.bin/groff/xditview/Makefile
index 24bf879..3c6d2b6 100644
--- a/gnu/usr.bin/groff/xditview/Makefile
+++ b/gnu/usr.bin/groff/xditview/Makefile
@@ -21,7 +21,7 @@ DPADD+= ${X11BASE}/lib/libXaw.a ${X11BASE}/lib/libXmu.a \
${X11BASE}/lib/libX11.a
afterinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
${.CURDIR}/GXditview.ad \
${DESTDIR}${X11BASE}/lib/X11/app-defaults/GXditview
.endif
OpenPOWER on IntegriCloud