X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 314EADC08E6 for ; Mon, 2 Nov 2015 23:29:52 +0000 (UTC) Received: from mail-ig0-f176.google.com (mail-ig0-f176.google.com [209.85.213.176]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 0172CDC00F8 for ; Mon, 2 Nov 2015 23:29:51 +0000 (UTC) Received: by igpw7 with SMTP id w7so68671933igp.0 for ; Mon, 02 Nov 2015 15:29:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=BakXcE9KTYedInFFyQs2AX1CJ/EkNMA4AKyr/UMIA8s=; b=RLJNprt20hH92jxcwskjXUQCBOFgd7mKmYOQjYhWYnDbAV0A/GhNKfDgxgXFcrWeRv j8bmzxXpQdWEcHygMUYjJu2jzJkACLb2iMMh1UkM6/HNKCdSkJfRQLVAgPCXBQjHpbcx OQiFPqSLGPdPoXLnG78pFPW1pnRKcwQAV31GsYiEBAhRP1hpXG+LVx9AeJTsQMRrRpk6 W0jduQ6P0e0BBqcSk9XfPxlLNorCSetk4CwmLIltR+MYswu3yw1zRomVYmB+0w9ztv1f +2xwthlxVNXuETcyWwUgiNnC5G2klKvNx+UgmHo+PuL5wnCeL7MNEQSM+6WtMZw+442q a68Q== X-Received: by 10.50.20.233 with SMTP id q9mr13359350ige.33.1446506990809; Mon, 02 Nov 2015 15:29:50 -0800 (PST) Received: from localhost.localdomain ([159.203.10.0]) by smtp.gmail.com with ESMTPSA id n93sm8163846ioi.15.2015.11.02.15.29.49 (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 02 Nov 2015 15:29:50 -0800 (PST) From: Muh Muhten To: alpine-aports@lists.alpinelinux.org Cc: Muh Muhten Subject: [alpine-aports] [PATCH] busybox: restore post-install+upgrade hooks Date: Mon, 2 Nov 2015 18:29:40 -0500 Message-Id: <1446506980-21169-1-git-send-email-muh.muhten@gmail.com> X-Mailer: git-send-email 2.4.9 (Apple Git-60) X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: was breaking other post-install hooks because the links didn't get installed until the trigger. we still need the links early. --- main/busybox/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/busybox/APKBUILD b/main/busybox/APKBUILD index d9e81f5..e3f3a9b 100644 --- a/main/busybox/APKBUILD +++ b/main/busybox/APKBUILD @@ -2,12 +2,13 @@ # Maintainer: Natanael Copa pkgname=busybox pkgver=1.24.1 -pkgrel=3 +pkgrel=4 pkgdesc="Size optimized toolbox of many common UNIX utilities" url=http://busybox.net arch="all" license="GPL2" makedepends="linux-headers" +install="$pkgname.post-install $pkgname.post-upgrade" subpackages="$pkgname-static $pkgname-suid" options="suid" triggers="busybox.trigger=/bin:/usr/bin:/sbin:/usr/sbin:/lib/modules/*" -- 2.4.9 (Apple Git-60) --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---