svn commit: r287902 - head

Bryan Drewery bdrewery at FreeBSD.org
Thu Sep 17 04:48:16 UTC 2015


Author: bdrewery
Date: Thu Sep 17 04:48:15 2015
New Revision: 287902
URL: https://svnweb.freebsd.org/changeset/base/287902

Log:
  Let makeman run 'make showconfig' without hitting the aarch64 error.

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Thu Sep 17 04:45:29 2015	(r287901)
+++ head/Makefile.inc1	Thu Sep 17 04:48:15 2015	(r287902)
@@ -330,6 +330,7 @@ CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN
 # support the target architecture), provide a default cross-binutils prefix.
 # This allows aarch64 builds, for example, to automatically use the
 # aarch64-binutils port or package.
+.if !make(showconfig)
 .if !empty(BROKEN_OPTIONS:MBINUTILS_BOOTSTRAP) && \
     !defined(CROSS_BINUTILS_PREFIX)
 CROSS_BINUTILS_PREFIX=/usr/local/${TARGET_ARCH}-freebsd/bin/
@@ -337,6 +338,7 @@ CROSS_BINUTILS_PREFIX=/usr/local/${TARGE
 .error In-tree binutils does not support the ${TARGET_ARCH} architecture. Install the ${TARGET_ARCH}-binutils port or package or set CROSS_BINUTILS_PREFIX.
 .endif
 .endif
+.endif
 
 XCOMPILERS=	CC CXX CPP
 .for COMPILER in ${XCOMPILERS}


More information about the svn-src-head mailing list