Date: Tue, 1 Jan 2013 20:33:52 +0000 (UTC) From: Wesley Shields <wxs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309783 - head/security/sudo Message-ID: <201301012033.r01KXqFh035496@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wxs Date: Tue Jan 1 20:33:52 2013 New Revision: 309783 URL: http://svnweb.freebsd.org/changeset/ports/309783 Log: Disable PIE on ia64. This was causing a run-time failure. Submitted by: Anton Shterenlikht, Todd Miller Modified: head/security/sudo/Makefile Modified: head/security/sudo/Makefile ============================================================================== --- head/security/sudo/Makefile Tue Jan 1 20:11:43 2013 (r309782) +++ head/security/sudo/Makefile Tue Jan 1 20:33:52 2013 (r309783) @@ -54,6 +54,10 @@ CONFIGURE_ARGS+= --with-secure-path="${S .include <bsd.port.options.mk> +.if ${ARCH} == "ia64" +CONFIGURE_ARGS+= --disable-pie +.endif + .if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes LDFLAGS+= -L${LOCALBASE}/lib -lintl
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201301012033.r01KXqFh035496>