PERFORCE change 105248 for review

Warner Losh imp at FreeBSD.org
Tue Aug 29 06:54:03 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=105248

Change 105248 by imp at imp_lighthouse on 2006/08/29 06:53:08

	config.guess, from autoconf, really wants $MACHINE-freebsd as
	the target.  It barfs on $MACHINE-$MACHINE_ARCH.  So
	we'll not be able to do that.  This effectively means that
	we'll MACHINE uniquely defines MACHINE_ARCH, I believe.  We
	might be able to get away with $MACHINE-$MACHINE_ARCH-freebsd.
	The middle tuple is suppsed to be for manufacturer, and the
	first one for architecture, but in practice it hasn't worked out
	that way.  The middle tuple is effectively unused...
	
	Since we'll likely need arm and armeb so that we can cross
	build for both on the same box, have binary packages in a
	meaningful way, etc, that means we'll likely have to do a
	little bit of grossness in the kernel because otherwise we'll
	have to do a lot of grossness outside the kernel.

Affected files ...

.. //depot/projects/arm/src/Makefile.inc1#11 edit

Differences ...

==== //depot/projects/arm/src/Makefile.inc1#11 (text+ko) ====

@@ -1209,7 +1209,7 @@
 NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
 	    -DWITHOUT_MAN -DWITHOUT_NLS -DWITHOUT_PROFILE 
 
-XDDIR=${XDEV}-${XDEV_ARCH}
+XDDIR=${XDEV}-freebsd
 XDTP=/usr/${XDDIR}
 CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
 	TARGET=${XDEV} \


More information about the p4-projects mailing list