]> git.puffer.fish Git - mirror/frr.git/commitdiff
2004-09-13 Paul Jakma <paul@dishone.st>
authorpaul <paul>
Mon, 13 Sep 2004 12:59:08 +0000 (12:59 +0000)
committerpaul <paul>
Mon, 13 Sep 2004 12:59:08 +0000 (12:59 +0000)
* Makefile.am: remove zebra/irdp.c from list - dead.
* extract.pl.in:  Substitute in the autoconf srcdir/builddir paths
  for includes to cpp.

vtysh/ChangeLog
vtysh/Makefile.am
vtysh/extract.pl.in

index 8e6684d2146fc652dec1db94212b55302b906e7b..54960e1abb23fde2fe3096c71bea739fec8e2ce1 100644 (file)
@@ -1,8 +1,10 @@
 2004-09-13 Paul Jakma <paul@dishone.st>
 
        * Makefile.am: extract.pl isnt in srcdir, it's always in the builddir.
+         remove zebra/irdp.c from list - dead.
        * extract.pl.in: match on end of filenames, filename could contain
-          various preamble due to out of tree builds.
+          various preamble due to out of tree builds. Substitute in the
+         autoconf srcdir/builddir paths for includes to cpp.
 
 2004-08-28 Hasso Tepper <hasso at quagga.net>
 
index c1c650bb72e83c8488179167e682198e39a33c66..1ac5ee45d5228ae4c41c42358a8c933b7dc4e013 100644 (file)
@@ -30,7 +30,7 @@ vtysh_cmd.c: $(top_srcdir)/ripd/*.c $(top_srcdir)/ripngd/*.c $(top_srcdir)/ospfd
        ./extract.pl $(top_srcdir)/ripd/*.c $(top_srcdir)/ripngd/*.c $(top_srcdir)/ospfd/*.c $(top_srcdir)/ospf6d/*.c \
          $(top_srcdir)/isisd/*.c $(top_srcdir)/bgpd/*.c $(top_srcdir)/lib/keychain.c $(top_srcdir)/lib/routemap.c \
          $(top_srcdir)/lib/filter.c $(top_srcdir)/lib/plist.c $(top_srcdir)/lib/distribute.c $(top_srcdir)/lib/if_rmap.c \
-         $(top_srcdir)/zebra/debug.c $(top_srcdir)/zebra/interface.c $(top_srcdir)/zebra/irdp.c \
+         $(top_srcdir)/zebra/debug.c $(top_srcdir)/zebra/interface.c  \
          $(top_srcdir)/zebra/irdp_interface.c $(top_srcdir)/zebra/rtadv.c $(top_srcdir)/zebra/zebra_vty.c \
          $(top_srcdir)/zebra/zserv.c > vtysh_cmd.c
 
index ae83a2e8d3999b56957c94c74077737165141e46..053b17e946a9f4dba3c8368dc8c336648c45e030 100755 (executable)
@@ -1,5 +1,7 @@
 #! @PERL@
 ##
+## @configure_input@
+##
 ## Virtual terminal interface shell command extractor.
 ## Copyright (C) 2000 Kunihiro Ishiguro
 ## 
@@ -54,7 +56,7 @@ $ignore{'"show route-map"'} = "ignore";
 foreach (@ARGV) {
     $file = $_;
 
-    open (FH, "cpp -DHAVE_CONFIG_H -DVTYSH_EXTRACT_PL -DHAVE_IPV6 -I. -I.. -I../lib $file |");
+    open (FH, "cpp -DHAVE_CONFIG_H -DVTYSH_EXTRACT_PL -DHAVE_IPV6 -I@top_builddir@ -I@srcdir@/ -I@srcdir@/.. -I@top_srcdir@/lib $file |");
     local $/; undef $/;
     $line = <FH>;
     close (FH);