From: Victor Martinez <pitillo@ono.com>
Date: Tue, 17 May 2016 19:49:31 +0000 (+0000)
Subject: libpcre: added sysroot and j_v libtool fix
X-Git-Url: http://gitweb/?a=commitdiff_plain;h=6a01185ac4e1361c27a10b82791e94597ef82126;p=crossrootfs.git

libpcre: added sysroot and j_v libtool fix
---

diff --git a/libpcre/Pkgfile b/libpcre/Pkgfile
index e9adc5c..5926429 100644
--- a/libpcre/Pkgfile
+++ b/libpcre/Pkgfile
@@ -21,7 +21,20 @@ build() {
               --prefix=/usr \
               --enable-utf8 \
               --enable-unicode-properties \
-              --enable-jit
+              --enable-jit \
+              --with-sysroot=$CLFS
+
+  # get rid of host lib search dirs from Makefiles
+  for mk in $(find -name Makefile) ; do
+    sed -i 's|-L/usr/lib||' $mk
+  done
+
+  # use same type fix as done for gcc port, to prevent libtool
+  # from linking in host libraries
+  for lt_file in $(find -name 'libtool') ; do
+    sed -i 's/func_append add_dir \" /add_dir=\"/' $lt_file
+  done
+
 
   make
   make DESTDIR=$PKG install