diff options
author | Thomas Bracht Laumann Jespersen <t@laumann.xyz> | 2022-06-08 22:07:04 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-16 17:30:37 +0100 |
commit | ea8ea2fee29e13d6c822560e446f11a58f07e80b (patch) | |
tree | dab0f3278d57446787753e0d085a19fdc48679d1 /media-libs/woff2 | |
parent | media-libs/sdl2-mixer: fix unquoted variable EPREFIX (diff) | |
download | gentoo-ea8ea2fee29e13d6c822560e446f11a58f07e80b.tar.gz gentoo-ea8ea2fee29e13d6c822560e446f11a58f07e80b.tar.bz2 gentoo-ea8ea2fee29e13d6c822560e446f11a58f07e80b.zip |
media-libs/woff2: fix unquoted variable BUILD_DIR
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/woff2')
-rw-r--r-- | media-libs/woff2/woff2-1.0.2-r5.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/media-libs/woff2/woff2-1.0.2-r5.ebuild b/media-libs/woff2/woff2-1.0.2-r5.ebuild index 73dc123a759f..09d0ca869bcb 100644 --- a/media-libs/woff2/woff2-1.0.2-r5.ebuild +++ b/media-libs/woff2/woff2-1.0.2-r5.ebuild @@ -29,9 +29,9 @@ src_configure() { src_install() { cmake_src_install - dobin ${BUILD_DIR}/woff2_compress - dobin ${BUILD_DIR}/woff2_decompress - dobin ${BUILD_DIR}/woff2_info + dobin "${BUILD_DIR}"/woff2_compress + dobin "${BUILD_DIR}"/woff2_decompress + dobin "${BUILD_DIR}"/woff2_info einstalldocs } |