Browse Source

use spaces, not colons

David Rose 16 years ago
parent
commit
640358a9d7
1 changed files with 5 additions and 7 deletions
  1. 5 7
      panda/src/configfiles/panda.init

+ 5 - 7
panda/src/configfiles/panda.init

@@ -1,12 +1,10 @@
 SETABS PANDA_VER 0.8
 MODREL ETC_PATH built/etc
-DOCSH if ( ! $?CONFIG_CONFIG ) then
-DOCSH   setenv CONFIG_CONFIG :configpath=CFG_PATH:configpath=ETC_PATH
+DOCSH if ( ! $?CFG_PATH ) then
 DOCSH   setenv CFG_PATH ~
-DOCSH   setenv CFG_PATH .:${CFG_PATH}:/usr/local/etc
+DOCSH   setenv CFG_PATH ". ${CFG_PATH} /usr/local/etc"
 DOCSH endif
-DOSH if [ -z "$CONFIG_CONFIG" ]; then
-DOSH   CONFIG_CONFIG=:configpath=CFG_PATH:configpath=ETC_PATH
-DOSH   CFG_PATH=.:$HOME:/usr/local/etc
-DOSH   export CONFIG_CONFIG CFG_PATH
+DOSH if [ -z "$CFG_PATH" ]; then
+DOSH   CFG_PATH=". $HOME /usr/local/etc"
+DOSH   export CFG_PATH
 DOSH fi