On Mon, Dec 01, 2008 at 10:46:39AM +1100, Stephen Rothwell wrote: > Hi Dave, > > Today's linux-next build (powerpc ppc64_defconfig) failed like this: > > GEN /scratch/sfr/powerpc_ppc64_defconfig/Makefile > *** > *** Can't find default configuration "arch/sparc/configs/ppc64_defconfig"! > *** > > Caused by commit 9cdcf85e1bf5dca97c1304292810041af2fcbd42 ("Subject: > [PATCH 08/10] sparc,sparc64: unify Makefile") which seems to arbitrarily > set SRCARCH in the top level make file to sparc! Crap - missed an if/endif Fix is simple: diff --git a/Makefile b/Makefile index 0043224..45f4300 100644 --- a/Makefile +++ b/Makefile @@ -206,7 +206,9 @@ ifeq ($(ARCH),x86_64) endif # Additional ARCH settings for sparc +ifeq ($(ARCH),sparc64) SRCARCH := sparc +endif # Where to locate arch specific headers hdr-arch := $(SRCARCH) > > (One way to take over the world, I guess :-)) Reminds me about Pinky & Brain - we almost suceeded! Sam -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html