mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-09 20:15:08 +00:00
2004-09-13 Paul Jakma <paul@dishone.st>
* Makefile.am: extract.pl isnt in srcdir, it's always in the builddir. * extract.pl.in: match on end of filenames, filename could contain various preamble due to out of tree builds.
This commit is contained in:
parent
72e2d82815
commit
0e82d0e120
@ -1,3 +1,9 @@
|
|||||||
|
2004-09-13 Paul Jakma <paul@dishone.st>
|
||||||
|
|
||||||
|
* Makefile.am: extract.pl isnt in srcdir, it's always in the builddir.
|
||||||
|
* extract.pl.in: match on end of filenames, filename could contain
|
||||||
|
various preamble due to out of tree builds.
|
||||||
|
|
||||||
2004-08-28 Hasso Tepper <hasso at quagga.net>
|
2004-08-28 Hasso Tepper <hasso at quagga.net>
|
||||||
|
|
||||||
* vtysh_main.c: Rename signal handling functions not to conflict
|
* vtysh_main.c: Rename signal handling functions not to conflict
|
||||||
|
@ -27,7 +27,7 @@ vtysh_cmd.c: $(top_srcdir)/ripd/*.c $(top_srcdir)/ripngd/*.c $(top_srcdir)/ospfd
|
|||||||
$(top_srcdir)/zebra/debug.c $(top_srcdir)/zebra/interface.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/irdp_interface.c $(top_srcdir)/zebra/rtadv.c $(top_srcdir)/zebra/zebra_vty.c \
|
||||||
$(top_srcdir)/zebra/zserv.c
|
$(top_srcdir)/zebra/zserv.c
|
||||||
$(srcdir)/extract.pl $(top_srcdir)/ripd/*.c $(top_srcdir)/ripngd/*.c $(top_srcdir)/ospfd/*.c $(top_srcdir)/ospf6d/*.c \
|
./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)/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)/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.c \
|
||||||
|
@ -117,7 +117,7 @@ foreach (@ARGV) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
($protocol) = ($file =~ /\/([a-z0-9]+)/);
|
($protocol) = ($file =~ /^.*\/([a-z0-9]+)\/[a-zA-Z0-9_\-]+\.c$/);
|
||||||
$protocol = "VTYSH_" . uc $protocol;
|
$protocol = "VTYSH_" . uc $protocol;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user