svn commit: r317387 - head/security/sudo
Wesley Shields
wxs at FreeBSD.org
Sat May 4 22:30:32 UTC 2013
Author: wxs
Date: Sat May 4 22:30:31 2013
New Revision: 317387
URL: http://svnweb.freebsd.org/changeset/ports/317387
Log:
Disable PIE on ARM. This was causing a crash at runtime.
Submitted by: Lukasz Siemiradzki
Modified:
head/security/sudo/Makefile
Modified: head/security/sudo/Makefile
==============================================================================
--- head/security/sudo/Makefile Sat May 4 22:30:06 2013 (r317386)
+++ head/security/sudo/Makefile Sat May 4 22:30:31 2013 (r317387)
@@ -49,6 +49,10 @@ CONFIGURE_ARGS+= --with-secure-path="${S
.include <bsd.port.options.mk>
+.if ${ARCH} == "arm"
+CONFIGURE_ARGS+= --disable-pie
+.endif
+
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
LDFLAGS+= -L${LOCALBASE}/lib -lintl
More information about the svn-ports-head
mailing list