You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
357 B
18 lines
357 B
#!/bin/sh
|
|
# Support script to properly set environments for Designer to run
|
|
|
|
LIBSUFFIX="lib"
|
|
|
|
if [ `uname -m` = "x86_64" ]; then
|
|
LIBSUFFIX="lib64"
|
|
fi
|
|
|
|
export QTDIR=/usr/lib/qt3/
|
|
export LD_LIBRARY_PATH=$QTDIR/$LIBSUFFIX:$LD_LIBRARY_PATH
|
|
export PATH=$QTDIR/bin:$PATH
|
|
|
|
export MOC=$QTDIR/bin/moc
|
|
export UIC=$QTDIR/bin/uic
|
|
|
|
exec $QTDIR/bin/assistant "$@"
|