diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-10-25 15:40:44 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-10-25 15:40:44 +0000 |
commit | ea9e9ae22e674f73028906db7699e3e4207d4f61 (patch) | |
tree | f27cf0214b948dbc11778db29f0c0dfc73ed5b9f /bindings/python/Makefile.in | |
parent | 52363b43277aa250498d9f86e035fa070a917b67 (diff) | |
download | pacman-ea9e9ae22e674f73028906db7699e3e4207d4f61.tar.xz |
Fixed library directory for bindings - we need the craptastic .libs libtool dir
Diffstat (limited to 'bindings/python/Makefile.in')
-rw-r--r-- | bindings/python/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/Makefile.in b/bindings/python/Makefile.in index fe2e84a6..abd7638a 100644 --- a/bindings/python/Makefile.in +++ b/bindings/python/Makefile.in @@ -7,7 +7,7 @@ CFLAGS += -I$(top_srcdir)/lib/libalpm ifeq ($(shell arch),x86_64) CFLAGS += -fPIC endif -LDFLAGS += -L$(top_srcdir)/lib/libalpm -lalpm +LDFLAGS += -L$(top_srcdir)/lib/libalpm/.libs -lalpm LIBDIR += $(shell python -c 'from distutils import sysconfig; print sysconfig.get_python_lib()'|sed 's|/usr|$(prefix)|') all: _alpm.so alpm.pyc |