From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Given Subject: Re: Broken-up patch #6 Date: Sat, 29 May 2004 01:32:40 +0100 Sender: linux-8086-owner@vger.kernel.org Message-ID: <40B7DA28.2090103@cowlark.com> References: <20040528230440.86447.qmail@web51310.mail.yahoo.com> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20040528230440.86447.qmail@web51310.mail.yahoo.com> List-Id: Content-Type: text/plain; charset="us-ascii"; format="flowed" To: linux-8086@vger.kernel.org Tommy McCabe wrote: [...] > all: $(PROGS) > + mkdir $(TARGET_MNT)/sbin If sbin already exists, this will fail. You want either '-mkdir' (ignore result) or 'mkdir -p' (create path if it doesn't already exist). This has confused me many times in the past... -- [insert interesting .sig here]