mirror of https://github.com/hak5/openwrt-owl.git
uClibc: remove absolute path linking to host libraries in libpthread.so (closes: #5601)
SVN-Revision: 17814owl
parent
4a99a9b7e3
commit
fd6e548d42
|
@ -103,15 +103,15 @@ define Host/Compile
|
||||||
$(UCLIBC_MAKE) PREFIX="$(TOOLCHAIN_DIR)/" install_runtime install_dev
|
$(UCLIBC_MAKE) PREFIX="$(TOOLCHAIN_DIR)/" install_runtime install_dev
|
||||||
ln -sf ../../lib/libc.so.0 $(TOOLCHAIN_DIR)/usr/lib/libc.so
|
ln -sf ../../lib/libc.so.0 $(TOOLCHAIN_DIR)/usr/lib/libc.so
|
||||||
$(CP) $(HOST_BUILD_DIR)/libc/libc_so.a $(TOOLCHAIN_DIR)/usr/lib/
|
$(CP) $(HOST_BUILD_DIR)/libc/libc_so.a $(TOOLCHAIN_DIR)/usr/lib/
|
||||||
# ( cd $(TOOLCHAIN_DIR) ; \
|
( cd $(TOOLCHAIN_DIR) ; \
|
||||||
# for d in lib usr/lib ; do \
|
for d in lib usr/lib ; do \
|
||||||
# for f in libc.so libpthread.so libgcc_s.so ; do \
|
for f in libc.so libpthread.so libgcc_s.so ; do \
|
||||||
# if [ -f $$$$d/$$$$f -a ! -L $$$$d/$$$$f ] ; then \
|
if [ -f $$$$d/$$$$f -a ! -L $$$$d/$$$$f ] ; then \
|
||||||
# $(SED) 's,/usr/lib/,,g;s,/lib/,,g' $$$$d/$$$$f ; \
|
$(SED) 's,/usr/lib/,,g;s,/lib/,,g' $$$$d/$$$$f ; \
|
||||||
# fi \
|
fi \
|
||||||
# done \
|
done \
|
||||||
# done \
|
done \
|
||||||
# )
|
)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Host/Install
|
define Host/Install
|
||||||
|
|
Loading…
Reference in New Issue