diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-06-07 13:03:24 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-06-07 13:08:19 +0200 |
commit | 92ab7428e85027d8155855e67e8e03bb80c93a94 (patch) | |
tree | ffe377db711fdf6e669c6f4d1f6ab6169b7c6f49 | |
parent | ab251cfe2b636fc3041fce8773d9a6c43c316446 (diff) |
sudo: bump version, use official upstream, don't disable auth
sudo without authentication doesn't make much sense, and it has very
limited impact on binary size.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/sudo/Config.in | 2 | ||||
-rw-r--r-- | package/sudo/sudo.mk | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/package/sudo/Config.in b/package/sudo/Config.in index a1b596bbe..fc0a175ec 100644 --- a/package/sudo/Config.in +++ b/package/sudo/Config.in @@ -5,3 +5,5 @@ config BR2_PACKAGE_SUDO limited root privileges to users and log root activity. The basic philosophy is to give as few privileges as possible but still allow people to get their work done. + + http://www.sudo.ws/sudo/ diff --git a/package/sudo/sudo.mk b/package/sudo/sudo.mk index fde4b7711..688df1643 100644 --- a/package/sudo/sudo.mk +++ b/package/sudo/sudo.mk @@ -4,9 +4,8 @@ # ############################################################# -SUDO_VERSION = 1.7.4p6 -SUDO_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/s/sudo -SUDO_SOURCE = sudo_$(SUDO_VERSION).orig.tar.gz +SUDO_VERSION = 1.7.6p2 +SUDO_SITE = http://www.sudo.ws/sudo/dist SUDO_CONF_OPT = \ --without-lecture \ @@ -14,7 +13,6 @@ SUDO_CONF_OPT = \ --without-umask \ --with-logging=syslog \ --without-interfaces \ - --disable-authentication \ --without-pam define SUDO_INSTALL_TARGET_CMDS |