From: Serj Kalichev Date: Fri, 7 Sep 2012 09:29:42 +0000 (+0400) Subject: build: fix extract.pl for cross compilation X-Git-Tag: frr-2.0-rc1~1782 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=ed6e297972318a0070ad4d973401fbc6e0def558;p=mirror%2Ffrr.git build: fix extract.pl for cross compilation extract.pl should invoke the C preprocessor for the target system, not the host. * vtysh/extract.pl.in: use @CPP@ to get target cpp Signed-off-by: David Lamparter --- diff --git a/vtysh/extract.pl.in b/vtysh/extract.pl.in index 2dbaf0a10d..37763043a0 100755 --- a/vtysh/extract.pl.in +++ b/vtysh/extract.pl.in @@ -63,7 +63,7 @@ $ignore{'"show history"'} = "ignore"; foreach (@ARGV) { $file = $_; - open (FH, "cpp -DHAVE_CONFIG_H -DVTYSH_EXTRACT_PL -DHAVE_IPV6 -I@top_builddir@ -I@srcdir@/ -I@srcdir@/.. -I@top_srcdir@/lib -I@top_builddir@/lib -I@top_srcdir@/isisd/topology @CPPFLAGS@ $file |"); + open (FH, "@CPP@ -DHAVE_CONFIG_H -DVTYSH_EXTRACT_PL -DHAVE_IPV6 -I@top_builddir@ -I@srcdir@/ -I@srcdir@/.. -I@top_srcdir@/lib -I@top_builddir@/lib -I@top_srcdir@/isisd/topology @CPPFLAGS@ $file |"); local $/; undef $/; $line = ; close (FH);