svn commit: r212954 - head/sys/conf

Andrew Thompson thompsa at FreeBSD.org
Tue Sep 21 07:03:53 UTC 2010


Author: thompsa
Date: Tue Sep 21 07:03:53 2010
New Revision: 212954
URL: http://svn.freebsd.org/changeset/base/212954

Log:
  Fix the path to the sys dir when cross compiling after r209510.
  
  Reviewed by:	imp

Modified:
  head/sys/conf/newvers.sh

Modified: head/sys/conf/newvers.sh
==============================================================================
--- head/sys/conf/newvers.sh	Tue Sep 21 07:01:00 2010	(r212953)
+++ head/sys/conf/newvers.sh	Tue Sep 21 07:03:53 2010	(r212954)
@@ -91,7 +91,7 @@ case "$d" in
 */sys/*)
 	SRCDIR=${d##*obj}
 	if [ -n "$MACHINE" ]; then
-		SRCDIR=${SRCDIR##/$MACHINE}
+		SRCDIR=${SRCDIR##/$MACHINE.$MACHINE_ARCH}
 	fi
 	SRCDIR=${SRCDIR%%/sys/*}
 


More information about the svn-src-head mailing list