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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B01301382C5 for ; Sun, 2 May 2021 10:51:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DCC8E092C; Sun, 2 May 2021 10:51:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E717AE0918 for ; Sun, 2 May 2021 10:51:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8CA44340CDE for ; Sun, 2 May 2021 10:51:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFF9F743 for ; Sun, 2 May 2021 10:51:03 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1619948392.9bdb9507db9b0e63ee303e3300602b5a32a02fd9.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sci-libs/jdqz/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sci-libs/jdqz/jdqz-0_pre19971107-r2.ebuild X-VCS-Directories: sci-libs/jdqz/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: 9bdb9507db9b0e63ee303e3300602b5a32a02fd9 X-VCS-Branch: master Date: Sun, 2 May 2021 10:51:03 +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: 7b91edcc-4551-417d-8980-e7e72cc17a35 X-Archives-Hash: cfd7e68244d91d2bd7426bf535b46f28 commit: 9bdb9507db9b0e63ee303e3300602b5a32a02fd9 Author: Alessandro Barbieri gmail com> AuthorDate: Sun May 2 09:39:52 2021 +0000 Commit: Theo Anderson posteo de> CommitDate: Sun May 2 09:39:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9bdb9507 sci-libs/jdqz: use pushd popd Signed-off-by: Alessandro Barbieri gmail.com> sci-libs/jdqz/jdqz-0_pre19971107-r2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-libs/jdqz/jdqz-0_pre19971107-r2.ebuild b/sci-libs/jdqz/jdqz-0_pre19971107-r2.ebuild index 189cc1afd..a6ca7f0f0 100644 --- a/sci-libs/jdqz/jdqz-0_pre19971107-r2.ebuild +++ b/sci-libs/jdqz/jdqz-0_pre19971107-r2.ebuild @@ -45,9 +45,9 @@ src_compile() { } src_test() { - cd "jdtest" || die + pushd "jdtest" || die emake - cd ".." || die + popd || die LD_LIBRARY_PATH="./jdlib" ./jdtest/example || die }