diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-08-10 16:06:24 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-08-10 16:06:24 +0000 |
commit | eccc8e9b8572057c6d0d5893bc95e151a9be7076 (patch) | |
tree | b97901ef3f7cc44a098458b2f76056e24db0ef43 /package/libosip2 | |
parent | 4b30f2c041d2983c5c8707b004589ea085ac2abb (diff) | |
download | upstream-eccc8e9b8572057c6d0d5893bc95e151a9be7076.tar.gz upstream-eccc8e9b8572057c6d0d5893bc95e151a9be7076.tar.bz2 upstream-eccc8e9b8572057c6d0d5893bc95e151a9be7076.zip |
Fix building when host and target systems are same arch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1597 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libosip2')
-rw-r--r-- | package/libosip2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libosip2/Makefile b/package/libosip2/Makefile index d4e6d61518..bf7a224f0c 100644 --- a/package/libosip2/Makefile +++ b/package/libosip2/Makefile @@ -26,7 +26,7 @@ $(PKG_BUILD_DIR)/.configured: $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(strip $(TARGET_CFLAGS))" \ CPPFLAGS="-I$(STAGING_DIR)/usr/include" \ - LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ + LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ |