Makefile: allow overriding install command via environment#5493
Makefile: allow overriding install command via environment#5493estesp merged 1 commit intocontainerd:masterfrom
Conversation
Packaging systems often want to override the install(1) command via INSTALL environment variable, in order to do distro specific fixups (eg. splitting out debug symbols from binaries to separate files). Also use it for creating install target directories. Signed-off-by: Enrico Weigelt, metux IT consult <[email protected]>
|
Hi @metux. Thanks for your PR. I'm waiting for a containerd member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
|
Build succeeded.
|
|
|
||
| define installmanpage | ||
| mkdir -p $(DESTDIR)/man/man$(2); | ||
| $(INSTALL) -d $(DESTDIR)/man/man$(2); |
There was a problem hiding this comment.
Note to other curious reviewers: install's -d flag is not GNU-only. It is supported by FreeBSD as well.
Packaging systems often want to override the install(1) command via INSTALL
environment variable, in order to do distro specific fixups (eg. splitting
out debug symbols from binaries to separate files).
Also use it for creating install target directories.
Signed-off-by: Enrico Weigelt, metux IT consult [email protected]