From: <abe...@us...> - 2015-02-20 18:32:09
|
Revision: 6981 http://sourceforge.net/p/astlinux/code/6981 Author: abelbeck Date: 2015-02-20 18:32:02 +0000 (Fri, 20 Feb 2015) Log Message: ----------- sudo, version bump to 1.8.12, security fix: CVE-2014-9680 Modified Paths: -------------- branches/1.0/package/sudo/sudo.mk Modified: branches/1.0/package/sudo/sudo.mk =================================================================== --- branches/1.0/package/sudo/sudo.mk 2015-02-20 17:51:46 UTC (rev 6980) +++ branches/1.0/package/sudo/sudo.mk 2015-02-20 18:32:02 UTC (rev 6981) @@ -4,22 +4,26 @@ # ############################################################# -SUDO_VERSION = 1.8.6p7 -SUDO_SITE = http://www.sudo.ws/sudo/dist +SUDO_VERSION = 1.8.12 +SUDO_SITE = http://www.sudo.ws/sudo/dist +# This is to avoid sudo's make install from chown()ing files which fails +SUDO_INSTALL_TARGET_OPT = INSTALL_OWNER="" DESTDIR="$(TARGET_DIR)" install + SUDO_CONF_OPT = \ - --without-lecture \ - --without-sendmail \ - --without-umask \ - --with-logging=syslog \ - --without-interfaces \ - --without-pam + --without-lecture \ + --without-sendmail \ + --without-umask \ + --with-logging=syslog \ + --without-interfaces \ + --without-pam \ + --with-env-editor # mksigname/mksiglist needs to run on build host to generate source files define SUDO_BUILD_MKSIGNAME_MKSIGLIST_HOST $(MAKE) $(HOST_CONFIGURE_OPTS) \ - CPPFLAGS="$(HOST_CPPFLAGS) -I../include -I.." \ - -C $(@D)/compat mksigname mksiglist + CPPFLAGS="$(HOST_CPPFLAGS) -I../../include -I../.." \ + -C $(@D)/lib/util mksigname mksiglist endef SUDO_POST_CONFIGURE_HOOKS += SUDO_BUILD_MKSIGNAME_MKSIGLIST_HOST This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |