X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 7C563DC01FB for ; Thu, 27 Jun 2013 06:12:11 +0000 (UTC) Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id A763720F0E for ; Thu, 27 Jun 2013 02:12:05 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute2.internal (MEProxy); Thu, 27 Jun 2013 02:12:05 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id :in-reply-to:references; s=smtpout; bh=zdPDBsVIEyG69sYaw1r94oywz FU=; b=jWHF2/o2aql5PFTw6/QWvRd28HsxZwJG9C+soKhoWPA50NLEDYGfWS5Rc Bq1/7jFaUnRLfWmXzx+160fMN0NymrapM7UE6/W/HFD/brtwp5qFx+c5RfO0SG+/ b4MYXJrjNvhVIS0gTtNL7PTVdg/Dtef9PuHPE5qMrVGGpBXn8U= X-Sasl-enc: QoJ6XZ4Snjnxftz5PMt7naUTvw7S0vGOWBgpusNNrFah 1372313525 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id 725B268027F for ; Thu, 27 Jun 2013 02:12:05 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 2/2] main/cryptsetup: fix location of .pc file Date: Thu, 27 Jun 2013 02:12:04 -0400 Message-Id: <6f49a6f30ea20462e859967c0a6087844474726a.1372313524.git.dubiousjim@gmail.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <91763992d9005781f59c99577620f15f8e794988.1372313524.git.dubiousjim@gmail.com> References: <91763992d9005781f59c99577620f15f8e794988.1372313524.git.dubiousjim@gmail.com> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Currently cryptsetup is installing its .pc file in /lib/pkgconfig; however, our main/pkgconf is not looking in that folder. This patch moves the .pc file from /lib/pkgconfig to /usr/lib/pkgconfig, as main/procps also does. (Alternatively, we might instead patch main/pkgconf to include /lib/pkgconfig in its default PKG_CONFIG_PATH.) --- main/cryptsetup/APKBUILD | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/cryptsetup/APKBUILD b/main/cryptsetup/APKBUILD index 5026770..8bf65d7 100644 --- a/main/cryptsetup/APKBUILD +++ b/main/cryptsetup/APKBUILD @@ -37,6 +37,8 @@ libs() { pkgdesc="Cryptsetup shared library" mkdir -p "$subpkgdir" mv "$pkgdir"/lib "$subpkgdir"/ + mkdir -p "$subpkgdir/usr/lib" + mv "$subpkgdir/lib/pkgconfig" "$subpkgdir/usr/lib/" } md5sums="f374d11e3b0e7ca0f805756fd02e34ff cryptsetup-1.6.1.tar.bz2 -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---