diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-04-12 08:02:11 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-04-12 08:02:11 +0000 |
commit | fce3579f8f8f3e1e44a8ddb4ee68473c4bd6cf25 (patch) | |
tree | 27bd2ae48715e84fbcae660255ebe26699223182 /gnu | |
parent | 32df570757a317bce199d3e04067ca839a5f9d2b (diff) |
explicitly set the ownership on installed include files as well
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/clang/include/clang/intrin/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/clang/include/clang/intrin/Makefile b/gnu/usr.bin/clang/include/clang/intrin/Makefile index f299a1e266b..d5f25a710a7 100644 --- a/gnu/usr.bin/clang/include/clang/intrin/Makefile +++ b/gnu/usr.bin/clang/include/clang/intrin/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2017/04/12 07:57:06 jsg Exp $ +# $OpenBSD: Makefile,v 1.9 2017/04/12 08:02:10 jsg Exp $ .include <bsd.own.mk> @@ -88,10 +88,10 @@ clean cleandir: install includes: ${HEADERS} .for dir in /usr/lib/clang /usr/lib/clang/${LLVM_V} ${CLANG_INTR_INCDIR} ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m ${DIRMODE} \ - ${DESTDIR}${dir} + ${DESTDIR}${dir} .endfor - ${INSTALL} ${INSTALL_COPY} -m 444 ${.ALLSRC} \ - ${DESTDIR}${CLANG_INTR_INCDIR} + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${.ALLSRC} ${DESTDIR}${CLANG_INTR_INCDIR} arm_neon.h: ${CLANG_INC}/clang/Basic/arm_neon.td ${TBLGEN} -gen-arm-neon -o ${.TARGET} ${.ALLSRC} |