office-gobmx/odk/setsdkenv_unix
Oliver Bolte 74a1516c1f INTEGRATION: CWS jsc8 (1.9.20); FILE MERGED
2006/06/09 08:45:15 jsc 1.9.20.1: #i66147# change variable name
2006-07-13 11:02:41 +00:00

56 lines
1.7 KiB
Bash
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#! /bin/sh
CURRENTDIR=`/bin/pwd`
SDKTMPDIR=`dirname $0`
SDKDIRECTORY=`(cd $SDKTMPDIR && pwd && cd $CURRENTDIR) | head -n 1`
OO_SDK_NAME=`basename $SDKDIRECTORY`
if [ "$1" = "--force-configure" ]
then
if [ -r $HOME/$OO_SDK_NAME/setsdkenv_unix.sh ]
then
rm $HOME/$OO_SDK_NAME/setsdkenv_unix.sh
fi
if [ -r $HOME/$OO_SDK_NAME/setsdkenv_unix.csh ]
then
rm $HOME/$OO_SDK_NAME/setsdkenv_unix.csh
fi
shift
elif [ "$1" = "-h" ] || [ "$1" = "--help" ] || [ -n "$1" ]
then
echo
echo " using: setsdkenv_unix [options]"
echo ""
echo " options:"
echo " --force-configure : force a new configuration of your SDK environment."
echo " Alternatively can you edit your SDK environment scripts directly:"
echo " $HOME/$OO_SDK_NAME/setsdkenv_unix.sh"
echo " $HOME/$OO_SDK_NAME/setsdkenv_unix.csh"
echo " -h, --help : print this help and exit"
echo
exit 1
fi
# source the prepared environment and start a new shell
if [ -r $HOME/$OO_SDK_NAME/setsdkenv_unix.sh ]
then
. $HOME/$OO_SDK_NAME/setsdkenv_unix.sh
else
echo
echo " ************************************************************************"
echo " *"
echo " * You have to configure your SDK environment first before you can"
echo " * can use it! The configuration has to be done only once."
echo " *"
echo " ************************************************************************"
echo
perl $SDKDIRECTORY/configure.pl $SDKDIRECTORY
. $HOME/$OO_SDK_NAME/setsdkenv_unix.sh
fi
"$SHELL" "$@"
echo Shell terminated.
TERMHEAD=`hostname`
echo "]2;$TERMHEAD"