diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-07 06:23:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-07 06:23:51 +0000 |
commit | 1d9709ce1ad0409dd8e67f9e96faf67827c56f34 (patch) | |
tree | a09505027a7841579baa0f38f72b94554787cbb1 /scripts | |
parent | Adding upstream version 2.10. (diff) | |
download | nvme-cli-1d9709ce1ad0409dd8e67f9e96faf67827c56f34.tar.xz nvme-cli-1d9709ce1ad0409dd8e67f9e96faf67827c56f34.zip |
Adding upstream version 2.10.2.upstream/2.10.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index a88336f..1c2df50 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -123,6 +123,7 @@ config_meson_docs() { -Ddocs=all \ -Ddocs-build=true \ --force-fallback-for=libnvme \ + --prefix=/tmp/usr \ -Dlibnvme:werror=false \ "${BUILDDIR}" } @@ -154,7 +155,12 @@ test_meson_coverage() { } install_meson_appimage() { - "${MESON}" install \ + "${MESON}" install \ + -C "${BUILDDIR}" +} + +install_meson_docs() { + "${MESON}" install \ -C "${BUILDDIR}" } |