Module Name:    src
Committed By:   christos
Date:           Tue Mar 26 16:52:04 UTC 2024

Modified Files:
        src/tools/elftoolchain/common: Makefile
        src/tools/elftoolchain/common/sys: Makefile

Log Message:
don't install headers as executable.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tools/elftoolchain/common/Makefile
cvs rdiff -u -r1.1 -r1.2 src/tools/elftoolchain/common/sys/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tools/elftoolchain/common/Makefile
diff -u src/tools/elftoolchain/common/Makefile:1.2 src/tools/elftoolchain/common/Makefile:1.3
--- src/tools/elftoolchain/common/Makefile:1.2	Mon May  2 14:28:38 2022
+++ src/tools/elftoolchain/common/Makefile	Tue Mar 26 12:52:03 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2022/05/02 18:28:38 jkoshy Exp $
+# $NetBSD: Makefile,v 1.3 2024/03/26 16:52:03 christos Exp $
 
 .include <bsd.hostinit.mk>
 
@@ -16,7 +16,7 @@ HOST_INCINSTFILES=
 HOST_INCINSTFILES+= ${HOST_INCSDIR}/${_f}
 ${HOST_INCSDIR}/${_f}: ${_f}
 	${_MKTARGET_INSTALL}
-	${HOST_INSTALL_FILE} ${.ALLSRC} ${.TARGET}
+	${HOST_INSTALL_FILE} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET}
 .endfor
 
 .PHONY:	all clean depend obj

Index: src/tools/elftoolchain/common/sys/Makefile
diff -u src/tools/elftoolchain/common/sys/Makefile:1.1 src/tools/elftoolchain/common/sys/Makefile:1.2
--- src/tools/elftoolchain/common/sys/Makefile:1.1	Wed Apr 13 13:52:56 2022
+++ src/tools/elftoolchain/common/sys/Makefile	Tue Mar 26 12:52:03 2024
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1 2022/04/13 17:52:56 jkoshy Exp $
+#	$NetBSD: Makefile,v 1.2 2024/03/26 16:52:03 christos Exp $
 
 .include <bsd.hostinit.mk>
 
@@ -25,7 +25,7 @@ ${HOST_INCSDIR}:
 HOST_INCINSTFILES+= ${HOST_INCSDIR}/${_f}
 ${HOST_INCSDIR}/${_f}: ${_f}
 	${_MKTARGET_INSTALL}
-	${HOST_INSTALL_FILE} ${.ALLSRC} ${.TARGET}
+	${HOST_INSTALL_FILE} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET}
 .endfor
 
 includes: .PHONY ${HOST_INCSDIR} .WAIT ${HOST_INCINSTFILES}

Reply via email to