We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dbe273 commit 2e8142bCopy full SHA for 2e8142b
Makefile
@@ -26,6 +26,14 @@ install:
26
done
27
install -D -m 0644 -t $(DESTDIR)/$(prefix)/lib/systemd/system systemd/*.service systemd/*.timer
28
29
+# Run this to also take over the functionality of `ostree container` for example.
30
+# Only needed for OS/distros that have callers invoking `ostree container` and not bootc.
31
+install-ostree-hooks:
32
+ install -d $(DESTDIR)$(prefix)/libexec/libostree/ext
33
+ for x in ostree-container ostree-ima-sign ostree-provisional-repair; do \
34
+ ln -sf ../../../bin/bootc $(DESTDIR)$(prefix)/libexec/libostree/ext/$$x; \
35
+ done
36
+
37
install-with-tests: install
38
install -D -m 0755 target/release/tests-integration $(DESTDIR)$(prefix)/bin/bootc-integration-tests
39
0 commit comments