From patchwork Thu Mar 29 15:46:25 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Korsgaard X-Patchwork-Id: 149421 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 05665B6EEF for ; Fri, 30 Mar 2012 02:47:03 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 1E5DEA033E; Thu, 29 Mar 2012 15:47:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 085qHc-cwyzy; Thu, 29 Mar 2012 15:46:58 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id F0B05A0359; Thu, 29 Mar 2012 15:46:48 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 09CE08F753 for ; Thu, 29 Mar 2012 15:46:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 04BA8269BD for ; Thu, 29 Mar 2012 15:46:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oUYwPxRSouQg for ; Thu, 29 Mar 2012 15:46:44 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.224]) by silver.osuosl.org (Postfix) with ESMTP id B6E7F26A0F for ; Thu, 29 Mar 2012 15:46:44 +0000 (UTC) Received: by busybox.osuosl.org (Postfix, from userid 4021) id B0407969A7; Thu, 29 Mar 2012 15:46:44 +0000 (UTC) From: Peter Korsgaard To: buildroot@busybox.net Date: Thu, 29 Mar 2012 17:46:25 +0200 X-Git-Refname: refs/heads/master X-Git-Oldrev: 92459d7378b4d9034f0c7b7265861570a8782e5a X-Git-Newrev: 61d3d740dba46f469ea368b9080091ce614455a8 X-Patchwork-Hint: ignore Message-Id: <20120329154644.B0407969A7@busybox.osuosl.org> Subject: [Buildroot] [git commit] sudo: bump to version 1.8.4p4 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net commit: http://git.buildroot.net/buildroot/commit/?id=61d3d740dba46f469ea368b9080091ce614455a8 branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- package/sudo/sudo.mk | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/package/sudo/sudo.mk b/package/sudo/sudo.mk index f10d294..71d7a20 100644 --- a/package/sudo/sudo.mk +++ b/package/sudo/sudo.mk @@ -4,9 +4,8 @@ # ############################################################# -SUDO_VERSION = 1.7.8p1 +SUDO_VERSION = 1.8.4p4 SUDO_SITE = http://www.sudo.ws/sudo/dist - SUDO_CONF_OPT = \ --without-lecture \ --without-sendmail \ @@ -16,9 +15,11 @@ SUDO_CONF_OPT = \ --without-pam define SUDO_INSTALL_TARGET_CMDS - install -m 4555 -D $(@D)/sudo $(TARGET_DIR)/usr/bin/sudo - install -m 0555 -D $(@D)/visudo $(TARGET_DIR)/usr/sbin/visudo - install -m 0440 -D $(@D)/sudoers $(TARGET_DIR)/etc/sudoers + install -m 4555 -D $(@D)/src/sudo $(TARGET_DIR)/usr/bin/sudo + install -m 0555 -D $(@D)/plugins/sudoers/visudo \ + $(TARGET_DIR)/usr/sbin/visudo + install -m 0440 -D $(@D)/plugins/sudoers/sudoers \ + $(TARGET_DIR)/etc/sudoers endef $(eval $(call AUTOTARGETS))