mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
cmp -s || install -c --> install -C
This commit is contained in:
parent
5def28a6a0
commit
dce96329a9
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17927
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user