From: alex <bin...@li...> - 2001-10-06 23:23:16
|
alex Sat Oct 6 16:23:10 2001 EDT Modified files: /r2/binarycloud/user/bcdev/conf MakeConf.php.xml Log: Updated MakeConf with fs perm options Index: r2/binarycloud/user/bcdev/conf/MakeConf.php.xml diff -u r2/binarycloud/user/bcdev/conf/MakeConf.php.xml:1.4 r2/binarycloud/user/bcdev/conf/MakeConf.php.xml:1.5 --- r2/binarycloud/user/bcdev/conf/MakeConf.php.xml:1.4 Mon Oct 1 16:37:01 2001 +++ r2/binarycloud/user/bcdev/conf/MakeConf.php.xml Sat Oct 6 16:23:10 2001 @@ -1,14 +1,14 @@ <?xml version="1.0" ?> <!-- // {{{ Header --File $Id: MakeConf.php.xml,v 1.4 2001/10/01 23:37:01 alex Exp $ +-File $Id: MakeConf.php.xml,v 1.5 2001/10/06 23:23:10 alex Exp $ -License LGPL (http://www.gnu.org/copyleft/lesser.html) -Copyright 2001, The Turing Studio, Inc. -Author alex black, en...@tu... // }}} --> -<makeconf> +<MakeConf> <!-- This is a freetext site name --> <site_name>Freetext Site Name</site_name> @@ -41,6 +41,31 @@ --> <use_bcc>true</use_bcc> + + <!-- + used by Make to set file permissions on files in the build tree + --> + <fsperms> + <file> + <match>*.php</match> + <perms> + <user>rw</user> + <group>rw</group> + <all>r</all> + </perms> + </file> + <location> + <!-- this is the path from lang_code root in the build dir --> + <path>/htdocs</path> + <resursive>true</recursive> + <perms> + <user>rw</user> + <group>rw</group> + <all>r</all> + </perms> + </location> + </fsperms> + </globals> <development> @@ -99,4 +124,4 @@ </distribution> -</makeconf> +</MakeConf> |