Update of /cvsroot/monetdb/clients
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15047/clients

Modified Files:
        rpm.mk.in 
Log Message:

(e.g.) with umask 0027, running `chmod -x` on files that have the x-bit set for 
all
results in
chmod: /tmp/xyz: new permissions are rw-r----x, not rw-r-----

hence, we used `chmod a-x` instead


Index: rpm.mk.in
===================================================================
RCS file: /cvsroot/monetdb/clients/rpm.mk.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- rpm.mk.in   5 Sep 2007 17:05:50 -0000       1.11
+++ rpm.mk.in   6 Sep 2007 07:15:42 -0000       1.12
@@ -63,7 +63,7 @@
        done
 
 cleanup_distr:
-       find clients-* -perm -0111 -type f ! -name \*.bat ! -name \*.sh ! -exec 
grep -q '^#!' {} \; -print | xargs --no-run-if-empty chmod -x
+       find clients-* -perm -0111 -type f ! -name \*.bat ! -name \*.sh ! -exec 
grep -q '^#!' {} \; -print | xargs --no-run-if-empty chmod a-x
        find clients-* -name \*.in ! -name configure.in ! -name \*.spec.in 
-print | while read i; do test -f $${i%.in} && rm -f $${i%.in}; done || true
 
 dist-hook: cleanup_distr


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to