diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-06 00:39:40 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-06 00:41:01 +0200 |
commit | 886a986a122ee0a502c863dd34fa883694fb8fc2 (patch) | |
tree | f9a8b1d1f382d111f5d84f4e030beace6379e819 /Makefile | |
parent | 11b2d00a47d1ab5110509aaa63efc86f9a95c112 (diff) | |
download | vyos-1x-886a986a122ee0a502c863dd34fa883694fb8fc2.tar.gz vyos-1x-886a986a122ee0a502c863dd34fa883694fb8fc2.zip |
isis: T2495: exclude generated nodes from package
Python developers can just comment the line.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -72,8 +72,9 @@ interface_definitions: $(BUILD_DIR) $(obj) rm -f $(TMPL_DIR)/interfaces/wireless/node.tag/vif/node.tag/ipv6/node.def rm -f $(TMPL_DIR)/interfaces/wirelessmodem/node.tag/ipv6/node.def rm -f $(TMPL_DIR)/protocols/node.def - mv $(TMPL_DIR)/protocols/nbgp $(TMPL_DIR)/protocols/.nbgp - mv $(TMPL_DIR)/protocols/nrip $(TMPL_DIR)/protocols/.nrip + rm -f $(TMPL_DIR)/protocols/nbgp + rm -f $(TMPL_DIR)/protocols/nrip + rm -f $(TMPL_DIR)/protocols/isis rm -f $(TMPL_DIR)/protocols/static/node.def rm -f $(TMPL_DIR)/system/node.def rm -f $(TMPL_DIR)/vpn/node.def |