diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-11 04:26:14 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-11 04:26:14 +0000 |
| commit | 346151534bc630b6458a6d5059255759c028fcb2 (patch) | |
| tree | a96c3b4f35ebc376dd0404be6385391089eaa7c4 | |
| parent | 02601c2856c604786acca84e3aef176baadc5c61 (diff) | |
use the right lib
| -rw-r--r-- | m4/python.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/python.m4 b/m4/python.m4 index e9f9c6ac..d00ac478 100644 --- a/m4/python.m4 +++ b/m4/python.m4 @@ -40,12 +40,12 @@ AC_DEFUN([PYTHON_DEVEL], do if test -r "$i/libpython$PYTHON_VERSION.so"; then PYLIB="$i/libpython$PYTHON_VERSION.so" - PYTHON_LIBS="-L$i -l$PYVERSION" + PYTHON_LIBS="-L$i -lpython$PYTHON_VERSION" break else if test -r "$i/lib$PYVERSION.a"; then PYLIB="$i/lib$PYVERSION.a" - PYTHON_LIBS="-L$i -l$PYVERSION -lpthread -ldl -lutil -lm" + PYTHON_LIBS="-L$i -lpython$PYTHON_VERSION -lpthread -ldl -lutil -lm" break else # look for really old versions |
