From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Np0Xz-0007VH-9j for qemu-devel@nongnu.org; Tue, 09 Mar 2010 09:36:35 -0500 Received: from [199.232.76.173] (port=44144 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Np0Xy-0007Un-HY for qemu-devel@nongnu.org; Tue, 09 Mar 2010 09:36:34 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Np0Xv-00087j-AM for qemu-devel@nongnu.org; Tue, 09 Mar 2010 09:36:34 -0500 Received: from mail-qy0-f190.google.com ([209.85.221.190]:62803) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Np0Xv-00087b-0l for qemu-devel@nongnu.org; Tue, 09 Mar 2010 09:36:31 -0500 Received: by qyk28 with SMTP id 28so7507415qyk.14 for ; Tue, 09 Mar 2010 06:36:30 -0800 (PST) Message-ID: <4B965CE8.50008@codemonkey.ws> Date: Tue, 09 Mar 2010 08:36:24 -0600 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH] use absolute URLs for .gitmodules References: <1267776484-10816-1-git-send-email-pbonzini@redhat.com> In-Reply-To: <1267776484-10816-1-git-send-email-pbonzini@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: qemu-devel@nongnu.org On 03/05/2010 02:08 AM, Paolo Bonzini wrote: > The relative URLs do not work when cloning a fork of qemu or when > cloning from the Savannah URL. > > Signed-off-by: Paolo Bonzini > > Signed-off-by: Paolo Bonzini > --- > .gitmodules | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/.gitmodules b/.gitmodules > index dd4745e..5217ce7 100644 > --- a/.gitmodules > +++ b/.gitmodules > @@ -1,6 +1,6 @@ > [submodule "roms/vgabios"] > path = roms/vgabios > - url = ../vgabios.git > + url = git://git.qemu.org/vgabios.git/ > [submodule "roms/seabios"] > path = roms/seabios > - url = ../seabios.git > + url = git://git.qemu.org/seabios.git/ > Relative URLs are more friendly for users of proxies. Regards, Anthony Liguori