diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu Jun 1 15:06:31 CEST 2006 Daniel Veillard <daniel@veillard.com> + + * configure.in: fix a problem in Python detection + Thu Jun 1 13:58:19 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net> * libxslt/attributes.c libxslt/variables.c diff --git a/configure.in b/configure.in index 058656fe..dcf5a736 100644 --- a/configure.in +++ b/configure.in @@ -223,7 +223,7 @@ except: print 0"` fi if test "$with_python" != "" then - pythondir=$(PYTHON_SITE_PACKAGES) + pythondir='$(PYTHON_SITE_PACKAGES)' else pythondir='$(libdir)/python$(PYTHON_VERSION)/site-packages' fi |