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 D092CDC8382 for ; Wed, 2 Sep 2015 09:52:51 +0000 (UTC) Received: from lithium.8pit.net (lithium.8pit.net [141.101.32.65]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 260A9DC8154; Wed, 2 Sep 2015 09:52:49 +0000 (UTC) Received: from localhost (ip5f5ac8f9.dynamic.kabel-deutschland.de [95.90.200.249]); by lithium.8pit.net (OpenSMTPD) with ESMTPSA id fae64da1; TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Wed, 2 Sep 2015 11:52:46 +0200 (CEST) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] main/chrony: adjust path to sendmail(1) Date: Wed, 2 Sep 2015 11:52:39 +0200 Message-Id: <1441187559-23326-1-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.5.1 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: The default configuration assumes that sendmail is located at /usr/lib/sendmail, however, the sendmail version shipped by busybox is located at /usr/sbin/sendmail. --- main/chrony/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/chrony/APKBUILD b/main/chrony/APKBUILD index ae46d83..767754c 100644 --- a/main/chrony/APKBUILD +++ b/main/chrony/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa pkgname=chrony pkgver=2.1.1 -pkgrel=4 +pkgrel=5 _ver=${pkgver/_/-} pkgdesc="NTP client and server programs" url="http://chrony.tuxfamily.org/" @@ -51,6 +51,7 @@ build() { --sysconfdir=/etc/$pkgname \ --disable-readline \ --with-user=$pkgname \ + --with-sendmail=/usr/sbin/sendmail \ || return 1 make all docs || return 1 -- 2.5.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---