summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2007-06-26 15:11:28 +0200
committerSimon Josefsson <simon@josefsson.org>2007-06-26 15:11:28 +0200
commitedc49a9e9a5777b86a6f16b5d8291a2c87e1859f (patch)
tree504162ed49fb93b48104acc0059ee83287b36985 /configure.in
parentec7bef87a629668d5b0f76a6a2e25b2ddf30176d (diff)
downloadgnutls-edc49a9e9a5777b86a6f16b5d8291a2c87e1859f.tar.gz
Fix installation path of Guile bindings.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 95fa282935..b8d677e5e8 100644
--- a/configure.in
+++ b/configure.in
@@ -139,15 +139,15 @@ if test "x$opt_guile_bindings" = "xyes"; then
if test $is_guile_1_8 -eq 0; then
AC_MSG_RESULT([yes])
case "x$with_guile_site_dir" in
- x|xno)
+ xno)
# Use the default $(GUILE_SITE).
GUILE_SITE_DIR
;;
- xyes)
+ x|xyes)
# Automatically derive $(GUILE_SITE) from $(pkgdatadir). This
# hack is used to allow `distcheck' to work (see
# `DISTCHECK_CONFIGURE_FLAGS' in the top-level `Makefile.am').
- GUILE_SITE="${datadir}/guile/site"
+ GUILE_SITE="\$(datadir)/guile/site"
AC_SUBST(GUILE_SITE)
;;
*)