diff options
Diffstat (limited to 'win/tools')
-rwxr-xr-x | win/tools/.check_kde_env | 4 | ||||
-rw-r--r-- | win/tools/build_tdelibs_dbg | 4 | ||||
-rw-r--r-- | win/tools/build_tdelibs_rel | 2 | ||||
-rwxr-xr-x | win/tools/kde_env_custom.template | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/win/tools/.check_kde_env b/win/tools/.check_kde_env index e4605ed1d..527420204 100755 --- a/win/tools/.check_kde_env +++ b/win/tools/.check_kde_env @@ -7,8 +7,8 @@ if [ -z "$KDEWIN" ] ; then exit 1 fi -if [ -z "$KDEDIR" ] ; then - echo `basename $0`": \$KDEDIR environment variable is not set. Set it to absolute path of tdelibs/win32 binaries, e.g. C:\\kde" +if [ -z "$TDEDIR" ] ; then + echo `basename $0`": \$TDEDIR environment variable is not set. Set it to absolute path of tdelibs/win32 binaries, e.g. C:\\kde" exit 1 fi diff --git a/win/tools/build_tdelibs_dbg b/win/tools/build_tdelibs_dbg index cabec259f..b252b10ac 100644 --- a/win/tools/build_tdelibs_dbg +++ b/win/tools/build_tdelibs_dbg @@ -16,7 +16,7 @@ echo "-------------------------------------------------" echo "Building Debug Version of KDElibs/win32" echo "Source directory: \$KDELIBS = $KDELIBS" echo "Version: $KDE_VER_MAJ.$KDE_VER_MIN.$KDE_VER_PAT" -echo "Destination directory: \$KDEDIR = $KDEDIR" +echo "Destination directory: \$TDEDIR = $TDEDIR" if [ -n $noclean ] ; then echo "Options: noclean" fi @@ -73,7 +73,7 @@ qmake makekdewidgets.pro && $make clean && $make || exit 1 qmake && $make clean && $make || exit 1 # copy kdewidgets plugin for Qt Designer -cp $KDEDIR/lib/trinity/plugins/designer/kdewidgets.dll $QTDIR/plugins/designer/ +cp $TDEDIR/lib/trinity/plugins/designer/kdewidgets.dll $QTDIR/plugins/designer/ cd $pwd diff --git a/win/tools/build_tdelibs_rel b/win/tools/build_tdelibs_rel index 7490c4866..2a9cabbd6 100644 --- a/win/tools/build_tdelibs_rel +++ b/win/tools/build_tdelibs_rel @@ -16,7 +16,7 @@ echo "-------------------------------------------------" echo "Building Release Version of KDElibs/win32" echo "Source directory: \$KDELIBS = $KDELIBS" echo "Version: $KDE_VER_MAJ.$KDE_VER_MIN.$KDE_VER_PAT" -echo "Destination directory: \$KDEDIR = $KDEDIR" +echo "Destination directory: \$TDEDIR = $TDEDIR" if [ -n $noclean ] ; then echo "Options: noclean" fi diff --git a/win/tools/kde_env_custom.template b/win/tools/kde_env_custom.template index a498805e9..2ffd018c4 100755 --- a/win/tools/kde_env_custom.template +++ b/win/tools/kde_env_custom.template @@ -7,7 +7,7 @@ MSVC="c:\\vs7" # Top KDE Directory - target of your compilation, please change -export KDEDIR="c:\\kde" +export TDEDIR="c:\\kde" # KDElibs/win32 top source directory, please change KDEWIN="c:\\kdewin32" |