summaryrefslogtreecommitdiffstats
path: root/lib/csu/i386/Makefile
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-08-06 12:24:38 +0000
committerbde <bde@FreeBSD.org>1995-08-06 12:24:38 +0000
commit6579f34131bcc90bb095184a1ab0c491ba0b59b5 (patch)
tree654fdd1b68d3f3b66fa5852885ab296a298270bf /lib/csu/i386/Makefile
parentd37f4ba3bc52c05290e132d2ec3d080bdb31c9fd (diff)
downloadFreeBSD-src-6579f34131bcc90bb095184a1ab0c491ba0b59b5.zip
FreeBSD-src-6579f34131bcc90bb095184a1ab0c491ba0b59b5.tar.gz
Change `install' to `${INSTALL}' so that default install flags can be
specified in the top level Makefiles. Previously I missed dozens of Makefiles that skip the install after using `cmp -s' to decide that the install isn't necessary.
Diffstat (limited to 'lib/csu/i386/Makefile')
-rw-r--r--lib/csu/i386/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile
index 43383cc..2a2f7dc 100644
--- a/lib/csu/i386/Makefile
+++ b/lib/csu/i386/Makefile
@@ -1,5 +1,5 @@
# from: @(#)Makefile 5.6 (Berkeley) 5/22/91
-# $Id: Makefile,v 1.15 1995/03/30 06:40:31 phk Exp $
+# $Id: Makefile,v 1.16 1995/06/30 15:30:35 wollman Exp $
CFLAGS+= -DLIBC_SCCS -DDYNAMIC
OBJS= crt0.o gcrt0.o c++rt0.o
@@ -32,13 +32,14 @@ gcrt0.o: crt0.o
beforeinstall:
cmp -s ${.CURDIR}/dlfcn.h ${DESTDIR}/usr/include/dlfcn.h || \
- install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
${.CURDIR}/dlfcn.h ${DESTDIR}/usr/include
realinstall:
.for i in ${OBJS}
cmp -s $i ${DESTDIR}/usr/lib/$i || \
- install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $i ${DESTDIR}/usr/lib
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
+ $i ${DESTDIR}/usr/lib
.endfor
depend: .depend
OpenPOWER on IntegriCloud