From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:44918) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzVp4-0007q9-Aq for qemu-devel@nongnu.org; Fri, 02 Sep 2011 11:38:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QzVp3-0001ex-7r for qemu-devel@nongnu.org; Fri, 02 Sep 2011 11:38:26 -0400 Received: from mail-gx0-f173.google.com ([209.85.161.173]:58929) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzVp3-0001et-40 for qemu-devel@nongnu.org; Fri, 02 Sep 2011 11:38:25 -0400 Received: by gxk26 with SMTP id 26so2039981gxk.4 for ; Fri, 02 Sep 2011 08:38:24 -0700 (PDT) Message-ID: <4E60F86E.2010507@codemonkey.ws> Date: Fri, 02 Sep 2011 10:38:22 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <20110828080128.GA12509@rox.home.comstyle.com> In-Reply-To: <20110828080128.GA12509@rox.home.comstyle.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] Fix install(1) usage to be compatible with OpenBSD's install(1). List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Brad Cc: qemu-devel@nongnu.org On 08/28/2011 03:01 AM, Brad wrote: > Fix install(1) usage to be compatible with OpenBSD's install(1). > > When creating a directory via the -d flag the -p flag cannot be > used at the same time. Also in the context of installing QEMU it > doesn't make sense to use the -p flag anyway so use the [default] > -c flag instead. > > Signed-off-by: Brad Smith Applied. Thanks. Regards, Anthony Liguori > > --- > configure | 6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/configure b/configure > index 1340c33..ad60ea0 100755 > --- a/configure > +++ b/configure > @@ -3081,9 +3081,9 @@ echo "TOOLS=$tools">> $config_host_mak > echo "ROMS=$roms">> $config_host_mak > echo "MAKE=$make">> $config_host_mak > echo "INSTALL=$install">> $config_host_mak > -echo "INSTALL_DIR=$install -d -m0755 -p">> $config_host_mak > -echo "INSTALL_DATA=$install -m0644 -p">> $config_host_mak > -echo "INSTALL_PROG=$install -m0755 -p">> $config_host_mak > +echo "INSTALL_DIR=$install -d -m 0755">> $config_host_mak > +echo "INSTALL_DATA=$install -c -m 0644">> $config_host_mak > +echo "INSTALL_PROG=$install -c -m 0755">> $config_host_mak > echo "PYTHON=$python">> $config_host_mak > echo "CC=$cc">> $config_host_mak > echo "CC_I386=$cc_i386">> $config_host_mak