From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Michael S. Tsirkin" Subject: [PATCH] kvm-kmod: create include directory Date: Tue, 28 Apr 2009 12:13:45 +0300 Message-ID: <20090428091345.GA20899@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii To: avi@redhat.com, kvm@vger.kernel.org Return-path: Received: from mx2.redhat.com ([66.187.237.31]:59043 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753778AbZD1JOq (ORCPT ); Tue, 28 Apr 2009 05:14:46 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n3S9ElhS025089 for ; Tue, 28 Apr 2009 05:14:47 -0400 Content-Disposition: inline Sender: kvm-owner@vger.kernel.org List-ID: include directory is not in git, so configure must create it before creating include/asm link Signed-off-by: Michael S. Tsirkin --- resending with a sane subject, sorry about multiple messages. configure | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 3e56338..30af6e7 100755 --- a/configure +++ b/configure @@ -103,6 +103,7 @@ if [ -n "$no_uname" -a "$want_module" ]; then fi rm -f include/asm include-compat/asm +mkdir -p include ln -sf asm-"$karch" include/asm ln -sf asm-"$karch" include-compat/asm -- MST