Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Sep 2010 07:03:53 +0000 (UTC)
From:      Andrew Thompson <thompsa@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r212954 - head/sys/conf
Message-ID:  <201009210703.o8L73rZc082724@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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/*}
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201009210703.o8L73rZc082724>