aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodney Dawes <dobey@ximian.com>2003-04-22 22:54:15 +0800
committerRodney Dawes <dobey@src.gnome.org>2003-04-22 22:54:15 +0800
commit35ef3e5a6e621ca3a57aca410c6c4b03a5850ea5 (patch)
treed88c5312aec3fea1d91aae6642ba13d0823966b4
parente7a2afd233d8b7dd238599fb52b2c8b6fb5419fd (diff)
downloadgsoc2013-evolution-35ef3e5a6e621ca3a57aca410c6c4b03a5850ea5.tar
gsoc2013-evolution-35ef3e5a6e621ca3a57aca410c6c4b03a5850ea5.tar.gz
gsoc2013-evolution-35ef3e5a6e621ca3a57aca410c6c4b03a5850ea5.tar.bz2
gsoc2013-evolution-35ef3e5a6e621ca3a57aca410c6c4b03a5850ea5.tar.lz
gsoc2013-evolution-35ef3e5a6e621ca3a57aca410c6c4b03a5850ea5.tar.xz
gsoc2013-evolution-35ef3e5a6e621ca3a57aca410c6c4b03a5850ea5.tar.zst
gsoc2013-evolution-35ef3e5a6e621ca3a57aca410c6c4b03a5850ea5.zip
Fix KDE_APPLNK_DIR to not install to a diff prefix, and disable installing
2003-04-21 Rodney Dawes <dobey@ximian.com> * configure.in: Fix KDE_APPLNK_DIR to not install to a diff prefix, and disable installing the file to the KDE applnk path by default svn path=/trunk/; revision=20915
-rw-r--r--ChangeLog5
-rw-r--r--configure.in16
2 files changed, 9 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 7538361931..628497dfc3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-04-21 Rodney Dawes <dobey@ximian.com>
+
+ * configure.in: Fix KDE_APPLNK_DIR to not install to a diff prefix,
+ and disable installing the file to the KDE applnk path by default
+
2003-04-11 Ettore Perazzoli <ettore@ximian.com>
* configure.in: 1.3.2.99.
diff --git a/configure.in b/configure.in
index ae56072674..3a5ff9af6d 100644
--- a/configure.in
+++ b/configure.in
@@ -1259,21 +1259,13 @@ dnl ********************
dnl KDE applnk directory
dnl ********************
AC_ARG_WITH(kde-applnk-path, [ --with-kde-applnk-path=PATH Location of KDE applnk files],
- [with_kde_applnk_path="$withval"])
+ [with_kde_applnk_path="$withval"],
+ [with_kde_applnk_path="no"])
if test x"$with_kde_applnk_path" != x"no"; then
if test -z "$with_kde_applnk_path"; then
- with_kde_applnk_path="$prefix/share/applnk"
- fi
- if test -d "$with_kde_applnk_path" ; then
- KDE_APPLNK_DIR="$with_kde_applnk_path"
- else
- AC_PATH_PROG(KDECONFIG, kde-config)
- if test -n "$KDECONFIG"; then
- KDE_APPLNK_DIR=`$KDECONFIG --expandvars --install apps`
- else
- KDE_APPLNK_DIR=""
- fi
+ with_kde_applnk_path="$datadir/applnk"
fi
+ KDE_APPLNK_DIR="$with_kde_applnk_path"
else
KDE_APPLNK_DIR=""
fi