Fixed library directory for bindings - we need the craptastic .libs libtool dir

This commit is contained in:
Aaron Griffin 2006-10-25 15:40:44 +00:00
parent 52363b4327
commit ea9e9ae22e
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ CFLAGS += -fno-strict-aliasing # see the swig docs
ifeq ($(shell arch),x86_64)
CFLAGS += -fPIC
endif
LDFLAGS += -L$(top_srcdir)/lib/libalpm -lalpm
LDFLAGS += -L$(top_srcdir)/lib/libalpm/.libs -lalpm
all: libalpm_java.so alpm.jar

View File

@ -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 perl -V|grep site|sed 's/^ *//;s|/usr|$(prefix)|;q')
all: Core.so

View File

@ -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