Mercurial > hg > xemacs-beta
comparison Makefile.in.in @ 4850:2727d0d8ef07
Fix executable permissions on source files
2010-01-13 Ben Wing <ben@xemacs.org>
* Makefile.in.in (fix-perms):
Add target for fix-perms. Run it to correct permissions.
2010-01-13 Ben Wing <ben@xemacs.org>
* fix-perms.sh: New file.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Wed, 13 Jan 2010 13:15:56 -0600 |
parents | aa5ed11f473b |
children | 349f01075eb7 |
comparison
equal
deleted
inserted
replaced
4847:05c519de7353 | 4850:2727d0d8ef07 |
---|---|
736 date=`LANG=C LC_ALL=C date -u '+%e %b %Y'`; \ | 736 date=`LANG=C LC_ALL=C date -u '+%e %b %Y'`; \ |
737 ident="@(#)RELEASE VERSION XEmacs ${version} $${date}"; \ | 737 ident="@(#)RELEASE VERSION XEmacs ${version} $${date}"; \ |
738 for f in `file lib-src/* src/${PROGNAME} | grep ELF | sed -e 's/:.*//'`; do \ | 738 for f in `file lib-src/* src/${PROGNAME} | grep ELF | sed -e 's/:.*//'`; do \ |
739 mcs -da "$${ident} `echo $${f} | sed 's/.*\///'`" $${f}; \ | 739 mcs -da "$${ident} `echo $${f} | sed 's/.*\///'`" $${f}; \ |
740 done | 740 done |
741 | |
742 ## Fix up permissions on source/build files | |
743 .PHONY: fix-perms | |
744 FRC.fix-perms: | |
745 fix-perms: FRC.fix-perms | |
746 cd ${srcdir} && sh lib-src/fix-perms.sh |