Author: bapt
Date: Tue Apr  1 06:46:59 2014
New Revision: 263983
URL: http://svnweb.freebsd.org/changeset/base/263983

Log:
  Ensure make xdev respect which compiler is CC
  and which compilers should be built according to standard build options

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1  Tue Apr  1 04:56:40 2014        (r263982)
+++ head/Makefile.inc1  Tue Apr  1 06:46:59 2014        (r263983)
@@ -1919,11 +1919,11 @@ _xb-build-tools:
 
 _xb-cross-tools:
 .for _tool in \
-    gnu/usr.bin/binutils \
-    gnu/usr.bin/cc \
+    ${_binutils} \
     usr.bin/ar \
     ${_clang_libs} \
-    ${_clang}
+    ${_clang} \
+    ${_cc}
        ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
        cd ${.CURDIR}/${_tool} && \
        ${CDMAKE} DIRPRFX=${_tool}/ obj && \
@@ -1947,10 +1947,11 @@ xdev-install: xdev-build _xi-mtree _xi-c
 _xi-cross-tools:
        @echo "_xi-cross-tools"
 .for _tool in \
-    gnu/usr.bin/binutils \
-    gnu/usr.bin/cc \
+    ${_binutils} \
     usr.bin/ar \
-    ${_clang}
+    ${_clang_libs} \
+    ${_clang} \
+    ${_cc}
        ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
        cd ${.CURDIR}/${_tool}; \
        ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to