Skip to content

Commit

Permalink
Fix dot2pic make dependencies
Browse files Browse the repository at this point in the history
I occasionally see the failure with "make -j32".

Acked-by: Ben Pfaff <[email protected]>
Signed-off-by: YAMAMOTO Takashi <[email protected]>
  • Loading branch information
yamt committed May 6, 2014
1 parent 0dc8b8c commit 74622b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vswitchd/automake.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if HAVE_PYTHON
if HAVE_DOT
vswitchd/vswitch.gv: ovsdb/ovsdb-dot.in vswitchd/vswitch.ovsschema
$(OVSDB_DOT) --no-arrows $(srcdir)/vswitchd/vswitch.ovsschema > $@
vswitchd/vswitch.pic: vswitchd/vswitch.gv ovsdb/dot2pic
vswitchd/vswitch.pic: vswitchd/vswitch.gv $(srcdir)/ovsdb/dot2pic
(dot -T plain < vswitchd/vswitch.gv | $(srcdir)/ovsdb/dot2pic -f 3) > $@;
VSWITCH_PIC = vswitchd/vswitch.pic
VSWITCH_DOT_DIAGRAM_ARG = --er-diagram=$(VSWITCH_PIC)
Expand Down
2 changes: 1 addition & 1 deletion vtep/automake.mk
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if HAVE_PYTHON
if HAVE_DOT
vtep/vtep.gv: ovsdb/ovsdb-dot.in vtep/vtep.ovsschema
$(OVSDB_DOT) --no-arrows $(srcdir)/vtep/vtep.ovsschema > $@
vtep/vtep.pic: vtep/vtep.gv ovsdb/dot2pic
vtep/vtep.pic: vtep/vtep.gv $(srcdir)/ovsdb/dot2pic
(dot -T plain < vtep/vtep.gv | $(srcdir)/ovsdb/dot2pic -f 3) > $@;
VTEP_PIC = vtep/vtep.pic
VTEP_DOT_DIAGRAM_ARG = --er-diagram=$(VTEP_PIC)
Expand Down

0 comments on commit 74622b4

Please sign in to comment.