From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49706) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UeJPe-0003da-7v for qemu-devel@nongnu.org; Mon, 20 May 2013 02:17:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UeJPZ-0006Zr-Ls for qemu-devel@nongnu.org; Mon, 20 May 2013 02:17:38 -0400 Received: from mail-qe0-f50.google.com ([209.85.128.50]:41173) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UeJPZ-0006Zn-HZ for qemu-devel@nongnu.org; Mon, 20 May 2013 02:17:33 -0400 Received: by mail-qe0-f50.google.com with SMTP id x7so1513946qeu.37 for ; Sun, 19 May 2013 23:17:33 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: Date: Mon, 20 May 2013 08:17:33 +0200 Message-ID: From: Stefan Hajnoczi Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: [Qemu-devel] This is an out of tree build but your source tree List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Cheung Cc: "qemu-devel@nongnu.org" On Mon, May 20, 2013 at 4:33 AM, Peter Cheung wrote: > /Users/peter/workspace/qemu_latest>make > Makefile:16: *** This is an out of tree build but your source tree > (/Users/peter/workspace/qemu_latest) seems to have been used for an in-tree > build. You can fix this by running "make distclean && rm -rf *-linux-user > *-softmmu" in your source tree. Stop. > > even i run "make distclean && rm -rf *-linux-user *-softmmu", it doesn't > help. Are you trying to do an out-of-tree build? If yes, run the distclean command in the _source tree_ and not in your out-of-tree directory. If you are not trying to do an out-of-tree build then maybe the Makefile is buggy here on Mac OS X: ifneq ($(realpath $(SRC_PATH)),$(realpath .)) Please add $(realpath $(SRC_PATH)) and $(realpath .) to the error message. That way you can confirm whether the path matching makes sense. Stefan