X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=Makefile;h=da0d71c9f76c00039d855bc21181c900a31ee5ce;hp=23e5fc7c09275e54eb5e43a7633e6ef8b959b405;hb=eccd02def292e56decfe125bcfdae35326006889;hpb=11737233a7ce6bc656bc7bc061c68eeda824ee9b diff --git a/Makefile b/Makefile index 23e5fc7..da0d71c 100644 --- a/Makefile +++ b/Makefile @@ -41,9 +41,15 @@ dist: clean 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: