From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E99AD158091 for ; Thu, 16 Jun 2022 16:31:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E93F5E09CD; Thu, 16 Jun 2022 16:30:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CE0BFE09CD for ; Thu, 16 Jun 2022 16:30:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5E2FA34211E for ; Thu, 16 Jun 2022 16:30:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31C9C518 for ; Thu, 16 Jun 2022 16:30:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1655397037.ea8ea2fee29e13d6c822560e446f11a58f07e80b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/woff2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/woff2/woff2-1.0.2-r5.ebuild X-VCS-Directories: media-libs/woff2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ea8ea2fee29e13d6c822560e446f11a58f07e80b X-VCS-Branch: master Date: Thu, 16 Jun 2022 16:30:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5722b37c-0360-4673-8d6d-6aceb9ca9b4c X-Archives-Hash: 26dc215a9e88a36b691655178844334a commit: ea8ea2fee29e13d6c822560e446f11a58f07e80b Author: Thomas Bracht Laumann Jespersen laumann xyz> AuthorDate: Wed Jun 8 20:07:04 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 16 16:30:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea8ea2fe media-libs/woff2: fix unquoted variable BUILD_DIR Signed-off-by: Thomas Bracht Laumann Jespersen laumann.xyz> Signed-off-by: Sam James gentoo.org> media-libs/woff2/woff2-1.0.2-r5.ebuild | 6 +++--- 1 file 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 }