summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-26 14:15:52 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-26 14:15:52 -0600
commit20a6861d50eb8d8e46599902553f0552c01cc724 (patch)
treefef52618340d6f0784ab4e1c210f0551ef5134dc
parenta6cc1778728ff06f841222f4948fca5c9241da61 (diff)
downloadk3b-20a6861d.tar.gz
k3b-20a6861d.zip
Rename kde-config to tde-config
-rw-r--r--FAQ2
-rw-r--r--acinclude.m410
-rw-r--r--configure.in2
3 files changed, 7 insertions, 7 deletions
diff --git a/FAQ b/FAQ
index 3b8395b..3f6dee6 100644
--- a/FAQ
+++ b/FAQ
@@ -20,7 +20,7 @@ A: Most likely you installed K3b in the wrong directory. All KDE programs are in
KDE dirtree (SuSE: /opt/trinity, RedHat: /usr). If you compile K3b from source it defaults
to either $TDEDIR or /usr/local. To install in the correct directory you need to specify the prefix
to configure like this:
- ./configure --prefix=`kde-config --prefix`
+ ./configure --prefix=`tde-config --prefix`
That will install K3b relative to the correct path.
diff --git a/acinclude.m4 b/acinclude.m4
index 08f2aa0..af86ec0 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -5006,13 +5006,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
@@ -5028,7 +5028,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 155603f..7a17863 100644
--- a/configure.in
+++ b/configure.in
@@ -1216,7 +1216,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,"