Skip to content

Commit

Permalink
Fix for build system to work with new libtool (ubuntu 8.10) which sud…
Browse files Browse the repository at this point in the history
…denly became more picky.

darcs-hash:20090501011258-f1522-3a16a32f6553ce37e31fb42925826f32294c6fb2.gz
  • Loading branch information
scudette committed May 1, 2009
1 parent 3ac18a6 commit 184ffa4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion config/acinclude.m4
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ AC_DEFUN([AC_PYTHON_DEVEL],[
AC_MSG_CHECKING([for python library path])
PYTHON_EXTRA_LIBS=`$PYTHON -c "import distutils.sysconfig;print distutils.sysconfig.get_python_lib() "
AC_MSG_RESULT($PYTHON_LDFLAGS)`
AC_SUBST([PYTHON_LDFLAGS],["-L$python_path -lpython$PYTHON_VERSION"])
if test -d "$python_path"; then \
AC_SUBST([PYTHON_LDFLAGS],["-L$python_path -lpython$PYTHON_VERSION"]) \
else \
AC_SUBST([PYTHON_LDFLAGS],["-lpython$PYTHON_VERSION"]) \
fi
AC_SUBST([PYTHON_EXTENSION], [".so"])
#
Expand Down

0 comments on commit 184ffa4

Please sign in to comment.