diff options
author | Brad | 2011-08-28 10:01:33 +0200 |
---|---|---|
committer | Anthony Liguori | 2011-09-02 17:34:55 +0200 |
commit | 1901cb14edb6b6d4c20986a77b2fcff67bd19755 (patch) | |
tree | ffbacc7750ea04915591aa44654364ba65cdbcc7 /configure | |
parent | Rename qemu -> qemu-system-i386 (diff) | |
download | qemu-1901cb14edb6b6d4c20986a77b2fcff67bd19755.tar.gz qemu-1901cb14edb6b6d4c20986a77b2fcff67bd19755.tar.xz qemu-1901cb14edb6b6d4c20986a77b2fcff67bd19755.zip |
Fix install(1) usage to be compatible with OpenBSD's install(1).
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 <brad@comstyle.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3085,9 +3085,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 |