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 4AA0015810F for ; Fri, 9 Jun 2023 11:11:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 734A3E07DB; Fri, 9 Jun 2023 11:11:35 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5D94FE07DB for ; Fri, 9 Jun 2023 11:11:35 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 820CA33D3CF for ; Fri, 9 Jun 2023 11:11:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4850A82 for ; Fri, 9 Jun 2023 11:11:32 +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: <1686309082.33e23d38b0235978641e29ea367a89614b7bc999.sam@gentoo> Subject: [gentoo-commits] proj/gentoo-functions:master commit in: / X-VCS-Repository: proj/gentoo-functions X-VCS-Files: meson.build X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 33e23d38b0235978641e29ea367a89614b7bc999 X-VCS-Branch: master Date: Fri, 9 Jun 2023 11:11:32 +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: 733f8d28-490e-4651-bcbb-5684d1f62dfb X-Archives-Hash: 258d4a00d4a7f8442af247c7ad3e5061 commit: 33e23d38b0235978641e29ea367a89614b7bc999 Author: Sam James gentoo org> AuthorDate: Fri Jun 9 11:11:22 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 9 11:11:22 2023 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=33e23d38 meson.build: fix running tests out of source Signed-off-by: Sam James gentoo.org> meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 049812d..f86edd5 100644 --- a/meson.build +++ b/meson.build @@ -43,6 +43,6 @@ do_tests = get_option('tests') if do_tests test( 'test-functions', files('test-functions'), - workdir : meson.current_source_dir(), + workdir : meson.current_build_dir(), ) endif