office-gobmx/odk/setsdkenv_unix
Rüdiger Timm 1a1df6ec69 INTEGRATION: CWS sdkinstaller (1.7.32); FILE MERGED
2005/11/03 15:14:59 jsc 1.7.32.2: #124595# modified for Solaris
2005/10/18 11:37:54 jsc 1.7.32.1: #124595# adapted for new installer
2005-11-09 08:28:58 +00:00

55 lines
1.6 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`
TMPDIR=`dirname $0`
SDKDIRECTORY=`(cd $TMPDIR && 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
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"