mirror of the now-defunct rocklinux.org
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.
|
|
if [ "$prefix_auto" = 1 ] ; then if [ "$NO_SANITY_CHECK" ] ; then prefix=$ROCKCFG_PKG_KDE31_CORE_PREFIX else for dir in usr opt/kde31 $ROCKCFG_PKG_KDE31_CORE_PREFIX ; do [ -f "$root/$dir/bin/artsd" ] && prefix="$dir" done
[ ! -f "$root/$prefix/bin/artsd" ] && abort "kdelibs (artsd) is not installed (in prefix $prefix)!" fi
set_confopt fi
# make sure the right qt and kde libs are used export LD_LIBRARY_PATH="$QT31DIR/lib:/$prefix/lib:$LD_LIBRARY_PATH"
# KDE specific configure options confopt="$confopt --with-qt-dir=$QT31DIR --with-qt-includes=$QT31DIR/include \ --with-qt-libraries=$QT31DIR/lib" # --enable-final often breaks things ...
|