summaryrefslogtreecommitdiff
path: root/vtep
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2017-11-20 10:05:25 -0800
committerBen Pfaff <blp@ovn.org>2017-11-26 16:12:07 -0800
commitddd7d381435e744a01552f0a36148d12f2044d49 (patch)
treef56deecf8ebdbff4dc5feeaae752c9eae31c470c /vtep
parentde9872221647bf44179aff1adbb3e802e3c5b3db (diff)
downloadopenvswitch-ddd7d381435e744a01552f0a36148d12f2044d49.tar.gz
tests: Convert dot2pic build tool from Perl to Python.
Perl is unfashionable and Python is more widely available and understood, so this commit converts one of the OVS uses of Perl into Python. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Aaron Conole <aconole@redhat.com>
Diffstat (limited to 'vtep')
-rw-r--r--vtep/automake.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/vtep/automake.mk b/vtep/automake.mk
index 069e1906c..0f313dce3 100644
--- a/vtep/automake.mk
+++ b/vtep/automake.mk
@@ -58,7 +58,7 @@ if HAVE_DOT
vtep/vtep.gv: ovsdb/ovsdb-dot.in vtep/vtep.ovsschema
$(AM_V_GEN)$(OVSDB_DOT) --no-arrows $(srcdir)/vtep/vtep.ovsschema > $@
vtep/vtep.pic: vtep/vtep.gv ovsdb/dot2pic
- $(AM_V_GEN)(dot -T plain < vtep/vtep.gv | $(PERL) $(srcdir)/ovsdb/dot2pic -f 3) > $@.tmp && \
+ $(AM_V_GEN)(dot -T plain < vtep/vtep.gv | $(PYTHON) $(srcdir)/ovsdb/dot2pic -f 3) > $@.tmp && \
mv $@.tmp $@
VTEP_PIC = vtep/vtep.pic
VTEP_DOT_DIAGRAM_ARG = --er-diagram=$(VTEP_PIC)