Skip to content

Commit

Permalink
get-kernel, resize: Fix dependencies.
Browse files Browse the repository at this point in the history
Because there are no *.mli in either of these directories, the .depend
file was not being built (silently).  So dependencies were wrong.

Fixes commit 692195c.
  • Loading branch information
rwmjones committed Sep 15, 2017
1 parent b0a8b36 commit 81419c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion get-kernel/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ stamp-virt-get-kernel.pod: virt-get-kernel.pod
touch $@

# OCaml dependencies.
.depend: *.mli *.ml
.depend: *.ml
$(top_builddir)/ocaml-dep.sh $^
-include .depend

Expand Down
2 changes: 1 addition & 1 deletion resize/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ check-valgrind:
$(MAKE) VG="@VG@" check

# Dependencies.
.depend: *.mli *.ml
.depend: *.ml
$(top_builddir)/ocaml-dep.sh $^
-include .depend

Expand Down

0 comments on commit 81419c4

Please sign in to comment.