aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-05-28 10:56:12 +0000
committerNicolas Thill <nico@openwrt.org>2005-05-28 10:56:12 +0000
commitd2a80b557a13a678ffa548e2a60ff7d752f86d5e (patch)
treed3e96d5e48cb1ebeafe1595de321f5d809b4dafe
parent41b3c2956aa2fea9b69eaad13499e4d0e4886eae (diff)
downloadupstream-d2a80b557a13a678ffa548e2a60ff7d752f86d5e.tar.gz
upstream-d2a80b557a13a678ffa548e2a60ff7d752f86d5e.tar.bz2
upstream-d2a80b557a13a678ffa548e2a60ff7d752f86d5e.zip
Fix lib search pathes, fix rpath in modules
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1088 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--openwrt/package/freeradius/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/openwrt/package/freeradius/Makefile b/openwrt/package/freeradius/Makefile
index f94f73e2b0a..a9b271a07d8 100644
--- a/openwrt/package/freeradius/Makefile
+++ b/openwrt/package/freeradius/Makefile
@@ -125,8 +125,9 @@ $(PKG_BUILD_DIR)/.configured:
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
- LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(PKG_INSTALL_DIR)/usr/lib/freeradius" \
- lt_sys_lib_search_path_spec="$(STAGING_DIR)/usr/lib" \
+ LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
+ sys_lib_dlsearch_path_spec="$(STAGING_DIR)/lib $(STAGING_DIR)/usr/lib" \
+ sys_lib_search_path_spec="$(STAGING_DIR)/lib $(STAGING_DIR)/usr/lib" \
MYSQL_CONFIG="no" \
./configure \
--target=$(GNU_TARGET_NAME) \