From 48cfb668fc9f2257b8955348b6c448f331db538c Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sun, 6 Aug 1995 12:24:38 +0000 Subject: 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. --- lib/csu/i386/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib/csu/i386') 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 -- cgit v1.3