summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-26 14:16:59 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-26 14:16:59 -0600
commitf84b7b0be6e523ea9de87faaa62534f4020f36e4 (patch)
tree6d829e381c46a94e3bf403e83776ec795a4094ee
parentdf4f9f20c73ef3dd4ad1af18f4110d202451c9b0 (diff)
downloadkdpkg-f84b7b0b.tar.gz
kdpkg-f84b7b0b.zip
Rename kde-config to tde-config
-rw-r--r--acinclude.m410
-rw-r--r--configure.in2
-rw-r--r--kdpkg-install/console.cpp2
-rw-r--r--kdpkg-install/install.cpp2
4 files changed, 8 insertions, 8 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 3bb6e23..2845c79 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -4981,13 +4981,13 @@ AC_DEFUN([KDE_SET_PREFIX],
KDE_SET_DEFAULT_BINDIRS
if test "x$prefix" = "xNONE"; then
- dnl no prefix given: look for kde-config in the PATH and deduce the prefix from it
- KDE_FIND_PATH(kde-config, KDECONFIG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(kde-config)], [], prepend)
+ dnl no prefix given: look for tde-config in the PATH and deduce the prefix from it
+ KDE_FIND_PATH(tde-config, KDECONFIG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(tde-config)], [], prepend)
else
- dnl prefix given: look for kde-config, preferrably in prefix, otherwise in PATH
+ dnl prefix given: look for tde-config, preferrably in prefix, otherwise in PATH
kde_save_PATH="$PATH"
PATH="$exec_prefix/bin:$prefix/bin:$PATH"
- KDE_FIND_PATH(kde-config, KDECONFIG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(kde-config)], [], prepend)
+ KDE_FIND_PATH(tde-config, KDECONFIG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(tde-config)], [], prepend)
PATH="$kde_save_PATH"
fi
@@ -5003,7 +5003,7 @@ AC_DEFUN([KDE_SET_PREFIX],
AC_MSG_CHECKING([where to install])
if test "x$prefix" = "xNONE"; then
prefix=$kde_libs_prefix
- AC_MSG_RESULT([$prefix (as returned by kde-config)])
+ AC_MSG_RESULT([$prefix (as returned by tde-config)])
else
dnl --prefix was given. Compare prefixes and warn (in configure.in.bot.end) if different
given_prefix=$prefix
diff --git a/configure.in b/configure.in
index a97f782..33c113a 100644
--- a/configure.in
+++ b/configure.in
@@ -82,7 +82,7 @@ if test -n "$kde_libs_prefix" -a -n "$given_prefix"; then
# And if so, warn when they don't match
if test "$kde_libs_prefix" != "$given_prefix"; then
# And if kde doesn't know about the prefix yet
- echo ":"`kde-config --path exe`":" | grep ":$given_prefix/bin/:" 2>&1 >/dev/null
+ echo ":"`tde-config --path exe`":" | grep ":$given_prefix/bin/:" 2>&1 >/dev/null
if test $? -ne 0; then
echo ""
echo "Warning: you chose to install this package in $given_prefix,"
diff --git a/kdpkg-install/console.cpp b/kdpkg-install/console.cpp
index 754fed0..9f28dfe 100644
--- a/kdpkg-install/console.cpp
+++ b/kdpkg-install/console.cpp
@@ -46,7 +46,7 @@ console::console(TQWidget *parent, const TQStrList &run, const char *name, const
// Get KDE prefix
// FIXME Is there a better way to do this???
- string prefixcommand="kde-config --prefix";
+ string prefixcommand="tde-config --prefix";
FILE *pipe_prefix;
char prefix_result[2048];
int i;
diff --git a/kdpkg-install/install.cpp b/kdpkg-install/install.cpp
index c766aaa..92686f0 100644
--- a/kdpkg-install/install.cpp
+++ b/kdpkg-install/install.cpp
@@ -63,7 +63,7 @@ install::install( const TQString &url, TQWidget *parent, const char *name, const
// Get KDE prefix
// FIXME Is there a better way to do this???
- string prefixcommand="kde-config --prefix";
+ string prefixcommand="tde-config --prefix";
FILE *pipe_prefix;
char prefix_result[2048];
int i;