summaryrefslogtreecommitdiff
path: root/lib/csu/m88k
diff options
context:
space:
mode:
authorPhilip Guenthe <guenther@cvs.openbsd.org>2011-11-08 10:37:11 +0000
committerPhilip Guenthe <guenther@cvs.openbsd.org>2011-11-08 10:37:11 +0000
commitced6d20e5a6c906aef393a8dac9c78ac6eaefd53 (patch)
tree776611376ba9548fefaafaee9b578abf325eee32 /lib/csu/m88k
parent86c9c861ab97a2ad110f2b21f856fa5422f22c3e (diff)
Pass install the -S option to avoid a window where the target isn't
executable (by mode or content), which can trip up builds with 'make -j' (The generic fix is in share/mk/*; some Makefiles have their own INSTALL lines) ok millert@ deraadt@
Diffstat (limited to 'lib/csu/m88k')
-rw-r--r--lib/csu/m88k/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/m88k/Makefile b/lib/csu/m88k/Makefile
index 04bb395097c..d6cac6be23c 100644
--- a/lib/csu/m88k/Makefile
+++ b/lib/csu/m88k/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.2 2009/10/27 23:59:58 deraadt Exp $
+# $OpenBSD: Makefile,v 1.3 2011/11/08 10:37:09 guenther Exp $
# from: @(#)Makefile 5.5 (Berkeley) 5/21/91
CFLAGS+= -I${.CURDIR}/..
@@ -30,7 +30,7 @@ scrt0.o: ${SRCS}
@rm -f ${.TARGET}.o
realinstall:
- ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
+ ${INSTALL} ${INSTALL_COPY} -S -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
${DESTDIR}/usr/lib
.if make(depend)