Update of /cvsroot/firebird/interbase/firebird/skywalker/install/classic
In directory usw-pr-cvs1:/tmp/cvs-serv24912
Modified Files:
CSpostinstall.sh
Log Message:
Changed to make include files readable by general public
Index: CSpostinstall.sh
===================================================================
RCS file: /cvsroot/firebird/interbase/firebird/skywalker/install/classic/CSpostinstall.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -U3 -r1.3 -r1.4
--- CSpostinstall.sh 2001/04/14 02:15:33 1.3
+++ CSpostinstall.sh 2001/04/17 16:32:14 1.4
@@ -332,6 +332,17 @@
chmod ug=rw,o= isc4.gdb
+ # Set a default of read all files in includes
+
+ cd include
+
+ for i in `ls`
+ do
+ chmod a=r $i
+ done
+
+ cd ..
+
# Set a default of read all files in examples
cd examples
|