From patchwork Thu Nov 21 14:51:51 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Schantl X-Patchwork-Id: 2602 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 47JjFZ0Dczz43Vt for ; Thu, 21 Nov 2019 14:52:02 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 47JjFX33C0z2QM; Thu, 21 Nov 2019 14:52:00 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 47JjFX0kl4z2ych; Thu, 21 Nov 2019 14:52:00 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 47JjFV3FNVz2xxj for ; Thu, 21 Nov 2019 14:51:58 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 47JjFT3cRSz2N1; Thu, 21 Nov 2019 14:51:57 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=201909ed25519; t=1574347917; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=iH2ZXZ2A2Uiu3F1w+t3dZ7Rpn3Cq0fnIcVuwSv9RilI=; b=ZiG8AvorN3O111ZL+JwZ5d8HrRvhSG30RnqgFUwptAfjt5YSc58hQyK7ND2rqYa2OJi0Jg rp+VoTQ0+LtPvBDQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=201909rsa; t=1574347917; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=iH2ZXZ2A2Uiu3F1w+t3dZ7Rpn3Cq0fnIcVuwSv9RilI=; b=Ph+Q8TZUNd3lFB8NeWhKdSSBO+alikibrbYD/dYOK7HL9W95COnrIEQAfnqwol3FcCyKeP zkLLyDtO/hvBoc3a+XEFA5L0dF7B/nkHfVvHionlB8PyNr1gMCZ3U+HkQFE+4NG7hrYbwU DF5Hn4ze0fKpcSWrXnbaODPYBZn7sbb6Q9lG6xuORx5cng8c0l3lVuQbvF34GVqQIsH2Ve yimXyb3lLz+m8ffNvJOxt6sVe74+YKCWJCg+/WkuCef092pZwnzPth3YBjbsB4ESqxME0Z Pzt3Txl6LG1Zco72gNDLc7L/DajXss+slDC6FrPNg/07+VJIed3Zhl8UK+yP6Q== From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] perl: Provide library location when running the testsuite Date: Thu, 21 Nov 2019 15:51:51 +0100 Message-Id: <20191121145151.26733-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Authentication-Results: mail01.ipfire.org; auth=pass smtp.auth=stevee smtp.mailfrom=stefan.schantl@ipfire.org X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Otherwise the perl testsuite could not locate libloc and will fail. Signed-off-by: Stefan Schantl --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index f2c0eb0..989d01e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -196,7 +196,7 @@ build-perl: .PHONY: check-perl check-perl: testdata.db - cd $(builddir)/src/perl && $(MAKE) test database="../../$<" + cd $(builddir)/src/perl && $(MAKE) LD_LIBRARY_PATH="$(abs_builddir)/src/.libs" test database="../../$<" .PHONY: install-perl install-perl: