summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-26 14:23:28 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-26 14:23:28 -0600
commitc5db5ce52bc6f1536d02e3a372ada70122fe7ec4 (patch)
treebf46471fc83c376755ab0e6b419ba356ab25a44a
parent7dd361378fea6bcd8faf150ad224eb324ccc388c (diff)
downloadrosegarden-c5db5ce5.tar.gz
rosegarden-c5db5ce5.zip
Rename kde-config to tde-config
-rw-r--r--INSTALL2
-rw-r--r--cmake_admin/FindKDECONFIG.cmake6
2 files changed, 4 insertions, 4 deletions
diff --git a/INSTALL b/INSTALL
index 71c493b..6b0e501 100644
--- a/INSTALL
+++ b/INSTALL
@@ -35,7 +35,7 @@ Now run CMake to generate the build files, and specify the location
where your system's KDE libraries are installed. A nice general way
to do this is:
-$ cmake . -DCMAKE_INSTALL_PREFIX=`kde-config --prefix`
+$ cmake . -DCMAKE_INSTALL_PREFIX=`tde-config --prefix`
If you omit the install prefix and just run
diff --git a/cmake_admin/FindKDECONFIG.cmake b/cmake_admin/FindKDECONFIG.cmake
index 5679434..fd640ba 100644
--- a/cmake_admin/FindKDECONFIG.cmake
+++ b/cmake_admin/FindKDECONFIG.cmake
@@ -20,7 +20,7 @@
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version. See the file
# COPYING included with this distribution for more information.
-# Find the kde-config program and retrieve the install dirs
+# Find the tde-config program and retrieve the install dirs
# Variables:
# HAVE_KDECONFIG
@@ -37,13 +37,13 @@
IF(KDECONFIG_EXECUTABLE)
SET(HAVE_KDECONFIG TRUE)
ELSE(KDECONFIG_EXECUTABLE)
- FIND_PROGRAM(KDECONFIG_EXECUTABLE NAMES kde-config PATHS
+ FIND_PROGRAM(KDECONFIG_EXECUTABLE NAMES tde-config PATHS
$ENV{TDEDIR}/bin
/opt/trinity/bin
/opt/kde/bin
NO_DEFAULT_PATH
)
- FIND_PROGRAM(KDECONFIG_EXECUTABLE kde-config)
+ FIND_PROGRAM(KDECONFIG_EXECUTABLE tde-config)
ENDIF(KDECONFIG_EXECUTABLE)
IF(NOT KDE3PREFIX)