diff options
author | peter <peter@FreeBSD.org> | 1996-08-30 01:41:52 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-08-30 01:41:52 +0000 |
commit | d24d89b92874bfa9ea3e94c11f64907b456a01f8 (patch) | |
tree | d4529bfd07a03773d29c8f0d47603385d0c3ed22 | |
parent | 82379f096b6ed74e2e1437fe48d2323270c03b8b (diff) | |
download | FreeBSD-src-d24d89b92874bfa9ea3e94c11f64907b456a01f8.zip FreeBSD-src-d24d89b92874bfa9ea3e94c11f64907b456a01f8.tar.gz |
cmp -s || install -c --> install -C
-rw-r--r-- | lib/csu/i386/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile index fb74e6b..edb43f5 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.23 1995/11/02 12:42:41 ache Exp $ +# $Id: Makefile,v 1.24 1996/05/07 23:16:08 wosch Exp $ CFLAGS+= -DLIBC_SCCS -fno-omit-frame-pointer OBJS= crt0.o c++rt0.o gcrt0.o scrt0.o sgcrt0.o @@ -43,15 +43,13 @@ sgcrt0.o: scrt0.o mv -f a.out ${.TARGET} beforeinstall: - cmp -s ${.CURDIR}/dlfcn.h ${DESTDIR}/usr/include/dlfcn.h || \ - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ - ${.CURDIR}/dlfcn.h ${DESTDIR}/usr/include + ${INSTALL} -C -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} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i \ + ${DESTDIR}/usr/lib .endfor depend: .depend |