From 6a01185ac4e1361c27a10b82791e94597ef82126 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Tue, 17 May 2016 19:49:31 +0000 Subject: [PATCH] libpcre: added sysroot and j_v libtool fix --- libpcre/Pkgfile | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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 -- 2.26.2