From patchwork Mon Sep 27 11:23:05 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin Ian King X-Patchwork-Id: 1533268 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: bilbo.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=canonical.com header.i=@canonical.com header.a=rsa-sha256 header.s=20210705 header.b=V8xByS3w; dkim-atps=neutral Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=) Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by bilbo.ozlabs.org (Postfix) with ESMTPS id 4HJ0cf2JMBz9tk7 for ; Mon, 27 Sep 2021 21:23:12 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1mUoix-0004yp-Dv; Mon, 27 Sep 2021 11:23:07 +0000 Received: from smtp-relay-canonical-1.internal ([10.131.114.174] helo=smtp-relay-canonical-1.canonical.com) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1mUoiw-0004yh-9w for fwts-devel@lists.ubuntu.com; Mon, 27 Sep 2021 11:23:06 +0000 Received: from localhost (1.general.cking.uk.vpn [10.172.193.212]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-1.canonical.com (Postfix) with ESMTPSA id 0844241303; Mon, 27 Sep 2021 11:23:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1632741786; bh=o53cPfosAwQLFmhELhvbKjzss8iTGPVUa2lTEseR7Pw=; h=From:To:Subject:Date:Message-Id:MIME-Version:Content-Type; b=V8xByS3wVVmWlTWTctFd8XxC97lPo4pEeXy/qt2YcDwXHnLg/cBH84WiM9pLQ9lXZ 0qk4k8It6Hrm8LdTkf2rQWsYi64osxVsZfpfyVsrq3d8SvGqx/56gAfQwrRWJc/jVq CYS+AkWOSFz3ag/YinPKSRBjfMeZR9LogxrIPFiFCYhNrg5KxfiTim/j+u9SozFh75 CMDWzNeNm+SbXqHLRlQrBgP0oPm0A1ZbVUBN6YvWhKaHerBGD0hDxAq605Wxm+eh3d gorhw6jJ4oAZQVaHIn0oyC0Trv8ffI9n1Rrh66Ew2huMnMR6L1pFYNXI8fUJ+qt7Hl QkzI98VVMzVcg== From: Colin King To: fwts-devel@lists.ubuntu.com Subject: [PATCH] snapcraft: Fix incorrect core20 library path Date: Mon, 27 Sep 2021 12:23:05 +0100 Message-Id: <20210927112305.41210-1-colin.king@canonical.com> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" From: Colin Ian King The libraries are now stored in usr/local, so adjust the library path Signed-off-by: Colin Ian King Acked-by: Ivan Hu --- snapcraft.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snapcraft.yaml b/snapcraft.yaml index da165633..b565ef62 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -41,4 +41,4 @@ apps: plugs: [home, hardware-observe, io-ports-control, kernel-module-control, log-observe, system-observe ] command: usr/local/bin/fwts environment: - LD_LIBRARY_PATH: $LD_LIBRARY_PATH:$SNAP/lib/fwts + LD_LIBRARY_PATH: $LD_LIBRARY_PATH:$SNAP/usr/local/lib/fwts