summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bindings/java/Makefile.am3
-rw-r--r--bindings/php4/Makefile.am3
-rw-r--r--bindings/php5/Makefile.am3
-rw-r--r--bindings/python/Makefile.am3
4 files changed, 8 insertions, 4 deletions
diff --git a/bindings/java/Makefile.am b/bindings/java/Makefile.am
index 25b952c6..83a33a1e 100644
--- a/bindings/java/Makefile.am
+++ b/bindings/java/Makefile.am
@@ -1,6 +1,7 @@
if JAVA_ENABLED
-INCLUDES = -I$(top_srcdir) \
+INCLUDES = \
-I$(top_builddir) \
+ -I$(top_srcdir) \
$(SASL_CFLAGS)
CLASSPATH_ENV= CLASSPATH=.:$(CLASSPATH_JUNIT)
diff --git a/bindings/php4/Makefile.am b/bindings/php4/Makefile.am
index c122ee34..71a87867 100644
--- a/bindings/php4/Makefile.am
+++ b/bindings/php4/Makefile.am
@@ -1,8 +1,9 @@
SUBDIRS =
if PHP4_ENABLED
-INCLUDES = -I$(top_srcdir) \
+INCLUDES = \
-I$(top_builddir) \
+ -I$(top_srcdir) \
$(SASL_CFLAGS)
php_extension_LTLIBRARIES = lasso.la
diff --git a/bindings/php5/Makefile.am b/bindings/php5/Makefile.am
index 27a9ed45..acaafb9b 100644
--- a/bindings/php5/Makefile.am
+++ b/bindings/php5/Makefile.am
@@ -1,8 +1,9 @@
SUBDIRS = examples
if PHP5_ENABLED
-INCLUDES = -I$(top_srcdir) \
+INCLUDES = \
-I$(top_builddir) \
+ -I$(top_srcdir) \
$(SASL_CFLAGS)
php_extensiondir = ${prefix}@PHP5_UNPREFIXED_EXTENSION_DIR@
diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am
index ff02fe17..65aa3804 100644
--- a/bindings/python/Makefile.am
+++ b/bindings/python/Makefile.am
@@ -1,8 +1,9 @@
SUBDIRS = tests
if PYTHON_ENABLED
-INCLUDES = -I$(top_srcdir) \
+INCLUDES = \
-I$(top_builddir) \
+ -I$(top_srcdir) \
$(SASL_CFLAGS)
pythondir= $(PY_SITE_PACKAGES)