case $CONFIG in '') if test -f config.sh; then TOP=.; elif test -f ../config.sh; then TOP=..; elif test -f ../../config.sh; then TOP=../..; elif test -f ../../../config.sh; then TOP=../../..; elif test -f ../../../../config.sh; then TOP=../../../..; else echo "Can't find config.sh."; exit 1 fi . $TOP/config.sh ;; esac : This forces SH files to create target in same directory as SH file. : This is so that make depend always knows where to find SH derivatives. case "$0" in */*) cd `expr X$0 : 'X\(.*\)/'` ;; esac #echo "Extracting env.sh (with variable substitutions)" : This section of the file will have variable substitutions done on it. : Move anything that needs config subs from !NO!SUBS! section to !GROK!THIS!. : Protect any dollar signs and backticks that you do not want interpreted : by putting a backslash in front. You may delete these comments. $spitshell >env.sh <>env.sh <<'!NO!SUBS!' #+ # # G4WORKDIR # if [ $G4WORKDIR ] ; then if [ X$g4non_display = X ] ; then echo "In your environment you have the G4WORKDIR=$G4WORKDIR" fi # if non_display else if [ X$g4non_display = X ] ; then # Check for Windows! if test "X$G4SYSTEM" = "XWIN32-VC" -o "X$G4SYSTEM" = "XWIN32-VC7"; then echo "G4WORKDIR will be set to c:/geant4 (in "native" Windows syntax)" G4WORKDIR="c:/geant4" export G4WORKDIR else # if Unix echo "G4WORKDIR will be set to HOME/geant4=$HOME/geant4" export G4WORKDIR=$HOME/geant4 fi # if platforms fi fi # # Shared libraries # if [ $G4LIB_BUILD_SHARED ] ; then if [ $LD_LIBRARY_PATH ] ; then LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${G4LIB}/${G4SYSTEM} export LD_LIBRARY_PATH else LD_LIBRARY_PATH=${G4LIB}/${G4SYSTEM} export LD_LIBRARY_PATH fi fi # # For BIN # PATH=${PATH}:${G4WORKDIR}/bin/${G4SYSTEM} export PATH !NO!SUBS! chmod 755 env.sh $eunicefix env.sh