arm/188249: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Fri Apr 4 18:00:01 UTC 2014


The following reply was made to PR arm/188249; it has been noted by GNATS.

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: arm/188249: commit references a PR
Date: Fri,  4 Apr 2014 17:58:38 +0000 (UTC)

 Author: bapt
 Date: Fri Apr  4 17:58:33 2014
 New Revision: 264131
 URL: http://svnweb.freebsd.org/changeset/base/264131
 
 Log:
   Prevent XDTP from being a relative path
   XDTP is used as the default SYSROOT for clang and thus should be an absolute path.
   
   PR:		arm/188249
   Submitted by:	Edgar Martinez <wink15987 at gmail.com>
   Reviewed by:	imp
 
 Modified:
   head/Makefile.inc1
 
 Modified: head/Makefile.inc1
 ==============================================================================
 --- head/Makefile.inc1	Fri Apr  4 17:57:49 2014	(r264130)
 +++ head/Makefile.inc1	Fri Apr  4 17:58:33 2014	(r264131)
 @@ -1875,7 +1875,11 @@ NOFUN=-DNO_FSCHG MK_HTML=no MK_INFO=no -
  	CPUTYPE=${XDEV_CPUTYPE}
  
  XDDIR=${XDEV_ARCH}-freebsd
 -XDTP?=usr/${XDDIR}
 +XDTP?=/usr/${XDDIR}
 +.if ${XDTP:N/*}
 +.error XDTP variable should be an absolute path
 +.endif
 +
  CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
  	INSTALL="sh ${.CURDIR}/tools/install.sh"
  CDENV= ${CDBENV} \
 _______________________________________________
 svn-src-all at freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe at freebsd.org"
 


More information about the freebsd-arm mailing list