aboutsummaryrefslogtreecommitdiff
path: root/lib/csu/i386
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1995-08-06 12:24:38 +0000
committerBruce Evans <bde@FreeBSD.org>1995-08-06 12:24:38 +0000
commit48cfb668fc9f2257b8955348b6c448f331db538c (patch)
tree654fdd1b68d3f3b66fa5852885ab296a298270bf /lib/csu/i386
parentd63abe4172ac583e5d2cf2086fe66a44c747b126 (diff)
downloadsrc-48cfb668fc9f2257b8955348b6c448f331db538c.tar.gz
src-48cfb668fc9f2257b8955348b6c448f331db538c.zip
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.
Notes
Notes: svn path=/head/; revision=9970
Diffstat (limited to 'lib/csu/i386')
-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 43383cc4d475..2a2f7dc131d1 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