Fix buildworld -DNO_CLEAN when using with Perforce, which marks files as
read-only by default, meaning files copied can't be overwritten next time. Reviewed by: imp Approved by: ken (mentor)
This commit is contained in:
parent
66fa238445
commit
10d63a94a9
@ -8,7 +8,7 @@ MAN= rlhistory.3
|
||||
SRCS= $(HISTSRC) xmalloc.c
|
||||
|
||||
rlhistory.3: doc/history.3
|
||||
cp ${.ALLSRC} ${.TARGET}
|
||||
cp -f ${.ALLSRC} ${.TARGET}
|
||||
|
||||
CLEANFILES+= rlhistory.3
|
||||
|
||||
|
@ -13,7 +13,7 @@ CLEANFILES += readline.texi
|
||||
readline.info: rlman.texi rluser.texi rltech.texi version.texi fdl.texi
|
||||
|
||||
readline.texi: rlman.texi
|
||||
cp ${SRCDIR}/rlman.texi ${.TARGET}
|
||||
cp -f ${SRCDIR}/rlman.texi ${.TARGET}
|
||||
|
||||
rluserman.info: rluserman.texi version.texi rluser.texi fdl.texi
|
||||
|
||||
|
@ -24,7 +24,7 @@ Makefile:
|
||||
@:
|
||||
|
||||
.sh:
|
||||
cp ${.IMPSRC} ${.TARGET}
|
||||
cp -f ${.IMPSRC} ${.TARGET}
|
||||
|
||||
.pl:
|
||||
sed -e 's,xPERL_PATHx,$(PERLPATH),' ${.IMPSRC} > ${.TARGET}
|
||||
|
@ -20,11 +20,11 @@ GDBvn.texi: version.in
|
||||
echo "@set GDBVN `sed q ${.ALLSRC}`" > ${.TARGET}
|
||||
|
||||
inc-hist.texinfo: hsuser.texi inc-hist.diff
|
||||
cp ${.ALLSRC:M*.texi} ${.TARGET}
|
||||
cp -f ${.ALLSRC:M*.texi} ${.TARGET}
|
||||
patch < ${.ALLSRC:M*.diff}
|
||||
|
||||
rluser.texinfo: rluser.texi
|
||||
cp ${.ALLSRC:M*.texi} ${.TARGET}
|
||||
cp -f ${.ALLSRC:M*.texi} ${.TARGET}
|
||||
|
||||
CLEANFILES= gdb-cfg.texi GDBvn.texi inc-hist.texinfo inc-hist.texinfo.orig \
|
||||
rluser.texinfo
|
||||
|
@ -30,6 +30,6 @@ bsdxml.h: expat.h
|
||||
> ${.TARGET}
|
||||
|
||||
bsdxml_external.h: expat_external.h
|
||||
cp ${.ALLSRC} ${.TARGET}
|
||||
cp -f ${.ALLSRC} ${.TARGET}
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
|
@ -355,13 +355,13 @@ buildinf.h: ${.CURDIR}/Makefile
|
||||
echo "#endif" ) > ${.TARGET}
|
||||
|
||||
opensslconf.h: opensslconf-${MACHINE_ARCH}.h
|
||||
cp ${.ALLSRC} ${.TARGET}
|
||||
cp -f ${.ALLSRC} ${.TARGET}
|
||||
|
||||
evp.h: ${LCRYPTO_SRC}/crypto/evp/evp.h
|
||||
.if ${MK_IDEA} == "no"
|
||||
sed '/^#ifndef OPENSSL_NO_IDEA$$/,/^#endif$$/d' ${.ALLSRC} > ${.TARGET}
|
||||
.else
|
||||
cp ${.ALLSRC} ${.TARGET}
|
||||
cp -f ${.ALLSRC} ${.TARGET}
|
||||
.endif
|
||||
|
||||
# No FIPS support for now
|
||||
|
@ -167,7 +167,7 @@ YFLAGS ?= -d
|
||||
${CTFCONVERT} ${CTFFLAGS} ${.TARGET})
|
||||
|
||||
.sh:
|
||||
cp ${.IMPSRC} ${.TARGET}
|
||||
cp -f ${.IMPSRC} ${.TARGET}
|
||||
chmod a+x ${.TARGET}
|
||||
|
||||
# DOUBLE SUFFIX RULES
|
||||
@ -225,7 +225,7 @@ YFLAGS ?= -d
|
||||
# non-Posix rule set
|
||||
|
||||
.sh:
|
||||
cp -p ${.IMPSRC} ${.TARGET}
|
||||
cp -fp ${.IMPSRC} ${.TARGET}
|
||||
chmod a+x ${.TARGET}
|
||||
|
||||
.c.ln:
|
||||
|
Loading…
Reference in New Issue
Block a user