changeset 116:eca09aac3ccc

makefile now sets permissions for executables and man pages
author arg@10ksloc.org
date Thu, 20 Jul 2006 09:45:47 +0200 (2006-07-20)
parents 329fd7dae530
children b819a4ac987e
files Makefile
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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: