diff options
author | Timothy Pearson <[email protected]> | 2012-02-26 14:24:08 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-26 14:24:08 -0600 |
commit | fba833fc9ea12d8b3dd115186b1ac6b2d3419d9f (patch) | |
tree | dc7b5868b36c72031261262794eb27eb13367e63 | |
parent | 4372ee8aa04e89cce10047a33a48ccf77c531242 (diff) | |
download | twin-style-crystal-fba833fc9ea12d8b3dd115186b1ac6b2d3419d9f.tar.gz twin-style-crystal-fba833fc9ea12d8b3dd115186b1ac6b2d3419d9f.zip |
Rename kde-config to tde-config
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | acinclude.m4 | 10 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 7 insertions, 7 deletions
@@ -2,7 +2,7 @@ Basic Installation (from the console): - Step 1 - $ ./configure --prefix=`kde-config --prefix` + $ ./configure --prefix=`tde-config --prefix` - Step 2 $ make - Step 3 (as root) diff --git a/acinclude.m4 b/acinclude.m4 index c451f6b..97b52ec 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 0d6a5d6..d6961a8 100644 --- a/configure.in +++ b/configure.in @@ -77,7 +77,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," |