From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Date: Sat, 30 Aug 2014 01:04:47 +0100 Subject: [U-Boot] tools-only build broken In-Reply-To: <1409342852.21481.73.camel@hellion.org.uk> References: <1409342852.21481.73.camel@hellion.org.uk> Message-ID: <1409357087.21481.75.camel@hellion.org.uk> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Fri, 2014-08-29 at 21:07 +0100, Ian Campbell wrote: > The tools-only target is currently broken: > $ make CROSS_COMPILE=arm-linux-gnueabihf- tools-only > CHK include/config/uboot.release > /bin/sh: 1: cannot open include/config/auto.conf: No such file > Makefile:1052: recipe for target 'include/config/uboot.release' failed > make: *** [include/config/uboot.release] Error 2 > > This is because tools-only depends on $(version_h), depends on > include/config/uboot.release, depends include/config/auto.conf. I think > this is all due to the support for LOCALVERSION(_AUTO). > > I'm not sure how to reconcile this, since the version stuff > fundamentally needs the .config. Perhaps sandbox could be used? In the meantime "touch include/config/auto.conf" lets it build (hardly ideal though!) Ian.