From: Colin Walters Date: Sat, 11 Feb 2017 20:33:57 +0000 (-0500) Subject: build: Remove .PHONY for Rust shared library X-Git-Tag: archive/raspbian/2022.1-3+rpi1~1^2~4^2~40^2~39 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ba350982e89660ecf0caf1f4422d4266cadedf86;p=ostree.git build: Remove .PHONY for Rust shared library I have no idea why I made the lib `.PHONY` originally; it's clearly wrong, and I noticed because when I was doing `sudo make install`, we were doing a rebuild, which in turn triggered other things to be built, and they'd be owned by root. Closes: #682 Approved by: jlebon --- diff --git a/Makefile-libostree.am b/Makefile-libostree.am index 79fddec7..70452f1a 100644 --- a/Makefile-libostree.am +++ b/Makefile-libostree.am @@ -24,7 +24,6 @@ noinst_LTLIBRARIES += libostree-kernel-args.la if ENABLE_RUST bupsplitpath = @abs_top_builddir@/target/@RUST_TARGET_SUBDIR@/libbupsplit_rs.a -.PHONY: $(bupsplitpath) BUPSPLIT_RUST_SOURCES = rust/src/bupsplit.rs EXTRA_DIST += $(BUPSPLIT_RUST_SOURCES) $(bupsplitpath): Makefile $(BUPSPLIT_RUST_SOURCES)