X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Fvariables.sh;h=351d23c61e3e2ceeb4c7d9937be5c24b287901ce;hb=f4c16b2e2c288c8c37bc36e0446c0141afd8a363;hp=e743345d94cd70a7b3d4ae473032efae9d2645e7;hpb=2b8c3b9f11123159c7e0c20b550c7bfefd796317;p=feisty_meow.git diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index e743345d..351d23c6 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -149,11 +149,15 @@ define_yeti_variable DEFAULT_FEISTYMEOW_ORG_DIR=/opt/feistymeow.org ############## - # umask sets a permission mask for all file creations. - # this mask disallows writes by "group" and "others". - umask 022 - # this mask disallows writes by the "group" and disallows "others" completely. + # umask sets a permission mask for all file creations. we don't set this for the users any + # more; they should set it themselves. this is just documentation. + # + # this mask disallows writes by the "group" and disallows all permissions for "others". #umask 027 + # this mask disallows writes by "group" and "others". + #umask 022 + # this mask allows writes by "group" but not by "others". + #umask 002 # ulimit sets user limits. we set the maximum allowed core dump file size # to zero, because it is obnoxious to see the core dumps from crashed @@ -175,7 +179,6 @@ define_yeti_variable DEFAULT_FEISTYMEOW_ORG_DIR=/opt/feistymeow.org # variables for perl. define_yeti_variable PERLLIB+="/usr/lib/perl5" - define_yeti_variable PERL5LIB+="/usr/lib/perl5" if [ "$OS" == "Windows_NT" ]; then define_yeti_variable PERLIO=:perlio # choose perl's IO over the ms-windows version so we can handle file @@ -190,10 +193,10 @@ define_yeti_variable DEFAULT_FEISTYMEOW_ORG_DIR=/opt/feistymeow.org ls $i/*.pl &>/dev/null if [ $? -eq 0 ]; then PERLLIB+=":$(dos_to_unix_path $i)" - PERL5LIB+=":$(dos_to_unix_path $i)" fi fi done + define_yeti_variable PERL5LIB=$PERLLIB #echo PERLLIB is now $PERLLIB ############## @@ -225,7 +228,10 @@ define_yeti_variable DEFAULT_FEISTYMEOW_ORG_DIR=/opt/feistymeow.org # the archive collections list is a set of directories that are major # repositories of data which can be synched to backup drives. - define_yeti_variable ARCHIVE_COLLECTIONS_LIST= + define_yeti_variable ARCHIVE_COLLECTION_LIST= + # the source collections list is a set of directories that indicate they + # harbor a lot of source code underneath. + define_yeti_variable SOURCE_HIERARCHY_LIST= # initializes the feisty meow build variables, if possible. function initialize_build_variables()