svn commit: r309783 - head/security/sudo

Wesley Shields wxs at FreeBSD.org
Tue Jan 1 20:33:53 UTC 2013


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


More information about the svn-ports-head mailing list