diff options
author | Jim Meyering <meyering@redhat.com> | 2009-08-04 13:55:51 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-08-04 14:26:28 +0200 |
commit | dc3d0e3b8ed8e77b1314f09d116ed97f6a440914 (patch) | |
tree | cde385dbc5100036988f69ade6b863737bd4253d /ocaml/Makefile.am | |
parent | febff9d2a35c4f40abbaf8943146476bdeac671e (diff) | |
download | libguestfs-dc3d0e3b8ed8e77b1314f09d116ed97f6a440914.tar.gz libguestfs-dc3d0e3b8ed8e77b1314f09d116ed97f6a440914.tar.xz libguestfs-dc3d0e3b8ed8e77b1314f09d116ed97f6a440914.zip |
build: don't emit trailing blanks, remove generated file
* ocaml/Makefile.am (.depend): Don't redirect directly to $@.
Filter out trailing blanks.
* ocaml/.depend: Regenerate.
Diffstat (limited to 'ocaml/Makefile.am')
-rw-r--r-- | ocaml/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ocaml/Makefile.am b/ocaml/Makefile.am index 1aa0cb6a..d65ebaaf 100644 --- a/ocaml/Makefile.am +++ b/ocaml/Makefile.am @@ -94,8 +94,9 @@ t/%.cmx: t/%.ml mlguestfs.cmxa depend: .depend .depend: $(wildcard *.mli) $(wildcard *.ml) - rm -f .depend - $(OCAMLFIND) ocamldep $^ > $@ + rm -f $@ $@-t + $(OCAMLFIND) ocamldep $^ | sed 's/ *$$//' > $@-t + mv $@-t $@ include .depend |