summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2010-05-08 21:09:52 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2010-05-08 21:09:52 +0000
commit30c801bed16485a15fd328207c4b95bf533e42b2 (patch)
treea68822e2e85e2d443d2996b65252988ff890b104 /share
parent8ce091187884462520ad3e96bcf2e4ce46ad4388 (diff)
Don't use INSTALL_DATA here, it's not defined for initial bootstrap
(then /usr/X11R6/share/mk isn't installed). Noticed by naddy@. Thanks.
Diffstat (limited to 'share')
-rw-r--r--share/mk/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/share/mk/Makefile b/share/mk/Makefile
index ce1074fd5..7c6723e2e 100644
--- a/share/mk/Makefile
+++ b/share/mk/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.4 2010/05/08 14:15:29 matthieu Exp $
+# $OpenBSD: Makefile,v 1.5 2010/05/08 21:09:51 matthieu Exp $
.include <bsd.own.mk>
@@ -7,6 +7,7 @@ FILES= automake.dep bsd.xconf.mk bsd.xorg.mk
all:
install::
- ${INSTALL_DATA} ${FILES} ${DESTDIR}${X11BASE}/share/mk
+ ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
+ ${DESTDIR}${X11BASE}/share/mk
.include <bsd.xorg.mk>