From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22993 invoked by alias); 8 Sep 2009 16:28:45 -0000 Received: (qmail 22935 invoked by uid 22791); 8 Sep 2009 16:28:44 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_66,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 08 Sep 2009 16:28:34 +0000 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n88GSUUM004550; Tue, 8 Sep 2009 12:28:30 -0400 Received: from host0.dyn.jankratochvil.net (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx05.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n88GSSKM018757 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 8 Sep 2009 12:28:29 -0400 Received: from host0.dyn.jankratochvil.net (localhost [127.0.0.1]) by host0.dyn.jankratochvil.net (8.14.3/8.14.3) with ESMTP id n88GSRNX001864; Tue, 8 Sep 2009 18:28:28 +0200 Received: (from jkratoch@localhost) by host0.dyn.jankratochvil.net (8.14.3/8.14.3/Submit) id n88GSRGK001862; Tue, 8 Sep 2009 18:28:27 +0200 Date: Tue, 08 Sep 2009 16:28:00 -0000 From: Jan Kratochvil To: Ralf Wildenhues Cc: gdb-patches@sourceware.org, bonzini@gnu.org Subject: Re: obtaining configure args from config.status Message-ID: <20090908162826.GA31394@host0.dyn.jankratochvil.net> References: <20090628183334.GA5401@gmx.de> <20090728181748.GA3134@gmx.de> <20090826151719.GA22276@host0.dyn.jankratochvil.net> <20090826164636.GA15791@ins.uni-bonn.de> <20090826165410.GA28796@host0.dyn.jankratochvil.net> <20090831202938.GC21485@gmx.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090831202938.GC21485@gmx.de> User-Agent: Mutt/1.5.19 (2009-01-05) X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2009-09/txt/msg00196.txt.bz2 Hi Ralf, On Mon, 31 Aug 2009 22:29:39 +0200, Ralf Wildenhues wrote: > + eval $(SHELL) "\"\$$rootsrc/testsuite/configure\" $$configargs" \ > + "\"--srcdir=\$$rootsrc/testsuite\"" \ do I miss anything if here would be just such simple quoting? eval $(SHELL) $${rootsrc}/testsuite/configure "$$configargs" \ --srcdir=\$${rootsrc}/testsuite \ Other parts of Makefile.in already cannot cope with spaces in $srcdir. Thanks, Jan