summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2007-08-31 16:41:19 +0200
committerTakashi Iwai <tiwai@suse.de>2007-08-31 16:41:19 +0200
commite23317de39dd3d13ee12c3e409f0014969549d42 (patch)
tree4858a33af30a1d7bda1d3474c09e4b9e93e32315
parentb04d1e18e42bc6471217818570703345b42645a2 (diff)
downloadalsa-lib-e23317de39dd3d13ee12c3e409f0014969549d42.tar.gz
Allow empty pythonincdir option
The include path options can be empty if the python is installed in the standard header path. So, configure shouldn't check its emptiness.
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 54f000f1..f8799527 100644
--- a/configure.in
+++ b/configure.in
@@ -350,7 +350,7 @@ if test "$build_python" = "yes"; then
AS_HELP_STRING([--with-pythonincdir=dir],
[specify python C header files (-I/usr/include/python)]),
pythonincdir="$withval", pythonincdir=`python-config --includes`)
- if test -z "$pythonlibs" -o -z "$pythonincdir"; then
+ if test -z "$pythonlibs"; then
echo "Unable to determine python libraries! Probably python-config is not"
echo "available on this system. Please, use --with-pythonlibs and"
echo "--with-pythonincdir options. Python components are disabled in this build."