makefile now sets permissions for executables and man pages
authorarg@10ksloc.org
Thu, 20 Jul 2006 09:45:47 +0200
changeset 116 eca09aac3ccc
parent 115 329fd7dae530
child 117 b819a4ac987e
makefile now sets permissions for executables and man pages
Makefile
--- a/Makefile	Thu Jul 20 07:26:23 2006 +0200
+++ b/Makefile	Thu Jul 20 09:45:47 2006 +0200
@@ -41,9 +41,15 @@
 install: all
 	@mkdir -p ${DESTDIR}${PREFIX}/bin
 	@cp -f ${BIN} ${DESTDIR}${PREFIX}/bin
+	@for i in ${BIN}; do \
+		chmod 755 ${DESTDIR}${PREFIX}/bin/`basename $$i`; \
+	done
 	@echo installed executable files to ${DESTDIR}${PREFIX}/bin
 	@mkdir -p ${DESTDIR}${MANPREFIX}/man1
 	@cp -f ${MAN1} ${DESTDIR}${MANPREFIX}/man1
+	@for i in ${MAN1}; do \
+		chmod 444 ${DESTDIR}${MANPREFIX}/man1/`basename $$i`; \
+	done
 	@echo installed manual pages to ${DESTDIR}${MANPREFIX}/man1
 
 uninstall: