qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] Fix install(1) usage to be compatible with Open


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH] Fix install(1) usage to be compatible with OpenBSD's install(1).
Date: Fri, 02 Sep 2011 10:38:22 -0500
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110516 Lightning/1.0b2 Thunderbird/3.1.10

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<address@hidden>

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]