From fd0a86436ed09487458788dd5f53cb2718d68188 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Wed, 1 Jan 1997 04:52:55 +0000 Subject: [PATCH] Use ${COPY} instead of -C for installing non-source files. crt*.o should be installed using the same flag as libraries, but ${COPY} is currently used for libraries. --- gnu/usr.bin/genclass/Makefile | 4 ++-- lib/csu/i386/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/usr.bin/genclass/Makefile b/gnu/usr.bin/genclass/Makefile index 808b01231c2a..dd6a6ab6165f 100644 --- a/gnu/usr.bin/genclass/Makefile +++ b/gnu/usr.bin/genclass/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1996/10/03 23:00:09 peter Exp $ # GPPDIR= ${.CURDIR}/../../../contrib/libg++ @@ -46,7 +46,7 @@ beforeinstall: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${GEN:S;^;${GPPDIR}/libg++/src/gen/;} \ ${DESTDIR}${PROTODIR} - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} genclass \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} genclass \ ${DESTDIR}${BINDIR} .include diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile index edb43f5026f6..a761ab69194d 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.24 1996/05/07 23:16:08 wosch Exp $ +# $Id: Makefile,v 1.25 1996/08/30 01:41:52 peter Exp $ CFLAGS+= -DLIBC_SCCS -fno-omit-frame-pointer OBJS= crt0.o c++rt0.o gcrt0.o scrt0.o sgcrt0.o @@ -48,7 +48,7 @@ beforeinstall: realinstall: .for i in ${OBJS} - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $i \ ${DESTDIR}/usr/lib .endfor