summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWu Xiaotian <[email protected]>2019-02-19 17:04:25 +0800
committerraveit65 <[email protected]>2019-03-06 16:43:18 +0100
commita041c1dca3f565616a5ef4dd1bc47910c013b580 (patch)
treedb9eb5e5539f0ea90ca5412858760856819cd0e7
parent803b0a2701fa6e0aabdae1d6bbfd75e6e85d215a (diff)
downloadcaja-dropbox-a041c1dca3f565616a5ef4dd1bc47910c013b580.tar.bz2
caja-dropbox-a041c1dca3f565616a5ef4dd1bc47910c013b580.tar.xz
show full path of caja-extension-dir
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index bf52831..5f061f7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -91,7 +91,11 @@ if test -z "$CAJA_EXTENSION_DIR"; then
custom_caja_extension_dir=false
fi
-AC_MSG_RESULT([${CAJA_EXTENSION_DIR}])
+if test x$custom_caja_extension_dir = xtrue; then
+ AC_MSG_RESULT([${CAJA_EXTENSION_DIR}])
+else
+ AC_MSG_RESULT([${libdir}/${CAJA_EXTENSION_DIR}])
+fi
AM_CONDITIONAL([CUSTOM_CAJA_EXTENSION_DIR], [test x$custom_caja_extension_dir = xtrue])
AC_SUBST(CAJA_EXTENSION_DIR)