svn commit: r310438 - head/graphics/libosmesa

Pietro Cerutti gahr at FreeBSD.org
Tue Jan 15 12:28:42 UTC 2013


Author: gahr
Date: Tue Jan 15 12:28:41 2013
New Revision: 310438
URL: http://svnweb.freebsd.org/changeset/ports/310438

Log:
  - Fix build on !(i386 || amd64)
  
  Reported by:	Anton Shterenlikht <mexas at bristol.ac.uk>

Modified:
  head/graphics/libosmesa/Makefile

Modified: head/graphics/libosmesa/Makefile
==============================================================================
--- head/graphics/libosmesa/Makefile	Tue Jan 15 12:21:25 2013	(r310437)
+++ head/graphics/libosmesa/Makefile	Tue Jan 15 12:28:41 2013	(r310438)
@@ -40,6 +40,9 @@ SCONS_BUILD_DIR=${WRKSRC}/build/freebsd-
 .elif ${ARCH} == "amd64"
 SCONS_ARGS+=	machine=x86_64
 SCONS_BUILD_DIR=${WRKSRC}/build/freebsd-x86_64
+.else
+SCONS_ARGS+=	machine=generic
+SCONS_BUILD_DIR=${WRKSRC}/build/freebsd
 .endif
 
 INCLUDES=	gl.h gl_mangle.h glext.h glx.h glx_mangle.h \


More information about the svn-ports-all mailing list