On Mon, Feb 15, 2016 at 07:24:19PM +0530, ARUN GK wrote:
> While I am trying to install pcre-8.38 its shows the below
> error. Plz help me to sort this issue...
>
> [root@staging pcre-8.38]# make install
> make install-am
> make[1]: Entering directory `/usr/local/src/pcre-8.38'
> if /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.
> -I. -fvisibility=hidden -O2 -MT libpcre_la-pcre_byte_order.lo -MD -MP
> -MF ".deps/libpcre_la-pcre_byte_order.Tpo" -c -o
> libpcre_la-pcre_byte_order.lo `test -f 'pcre_byte_order.c' || echo
> './'`pcre_byte_order.c; \
> then mv -f ".deps/libpcre_la-pcre_byte_order.Tpo"
> ".deps/libpcre_la-pcre_byte_order.Plo"; else rm -f
> ".deps/libpcre_la-pcre_byte_order.Tpo"; exit 1; fi
> ./libtool: line 937: X--tag=CC: command not found
> ./libtool: line 970: libtool: ignoring unknown tag : command not found
It looks as you half-upgraded libtool in the PCRE sources. If you updates the
build scripts bundled with PCRE, then you need to update all of them by
"autoreconf -fi" command before invoking ./configure.
-- Petr