From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ozlabs.org (ozlabs.org [103.22.144.67]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 3CA751A0010 for ; Wed, 18 Mar 2015 16:19:40 +1100 (AEDT) In-Reply-To: <20150315220847.1ecfe174@canb.auug.org.au> To: Stephen Rothwell From: Michael Ellerman Subject: Re: [PATCHv3] powerpc: convert relocs_check to a shell script using grep Message-Id: <20150318051940.238AC14011D@ozlabs.org> Date: Wed, 18 Mar 2015 16:19:40 +1100 (AEDT) Cc: Paul Mackerras , David Laight , linuxppc-dev@lists.ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Sun, 2015-15-03 at 11:08:47 UTC, Stephen Rothwell wrote: > This runs a bit faster and removes another use of perl from > the kernel build. It tells me: $ make ARCH=powerpc CROSS_COMPILE= -s ppc64_defconfig # # configuration written to .config # $ make ARCH=powerpc CROSS_COMPILE= -s -j240 ... arch/powerpc/relocs_check.sh: objdump (objdump) is not executable make: *** [relocs_check] Error 1 I suspect because: +if [ ! -x "$objdump" ]; then Doesn't search the PATH. cheers