forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
20 lines
448 B
Bash
20 lines
448 B
Bash
#!/bin/sh
|
|
|
|
export ISE_EIFFEL="%%DATADIR%%"
|
|
export ISE_PLATFORM="%%EIFFEL_HOST%%"
|
|
|
|
if [ -z "$PATH" ]
|
|
then
|
|
export PATH="$ISE_EIFFEL/studio/spec/$ISE_PLATFORM/bin"
|
|
else
|
|
export PATH="$PATH:$ISE_EIFFEL/studio/spec/$ISE_PLATFORM/bin"
|
|
fi
|
|
|
|
if [ -z "$LD_LIBRARY_PATH" ]
|
|
then
|
|
export LD_LIBRARY_PATH="$ISE_EIFFEL/studio/spec/$ISE_PLATFORM/lib"
|
|
else
|
|
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$ISE_EIFFEL/studio/spec/$ISE_PLATFORM/lib"
|
|
fi
|
|
|
|
exec estudio "$@"
|