[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] makefile problem on ppc
From: |
Rusty Russell |
Subject: |
Re: [Qemu-devel] makefile problem on ppc |
Date: |
Thu, 25 Mar 2004 14:32:52 +1100 |
On Wed, 2004-03-24 at 03:21, Denis J Barrow wrote:
> Hi,
> I am attempting to install on yellowdog 3.0
> but there appears to be a minor Makefile bug.
>
>
> I tried the latest in CVS & the 0.5.2 versions
>
> make[1]: Entering directory `/usr/src/qemu/qemucvscopy/qemu/i386-user'
> install -m 755 -s qemu-i386 /usr/local/bin
> make[1]: Leaving directory `/usr/src/qemu/qemucvscopy/qemu/i386-user'
> make[1]: Entering directory `/usr/src/qemu/qemucvscopy/qemu/i386'
> install -m 755 -s /usr/local/bin
> install: too few arguments
> Try `install --help' for more information.
> make[1]: *** [install] Error 1
> make[1]: Leaving directory `/usr/src/qemu/qemucvscopy/qemu/i386'
> make: *** [install] Error 1
Patch from the Debian package:
--- qemu-0.5.2.orig/Makefile.target
+++ qemu-0.5.2/Makefile.target
@@ -275,7 +275,9 @@
rm -f *.o *.a *~ $(PROGS) gen-op.h opc.h op.h
install: all
+ifneq ($(PROGS),)
install -m 755 -s $(PROGS) $(prefix)/bin
+endif
ifneq ($(wildcard .depend),)
include .depend
Rusty.
--
Anyone who quotes me in their signature is an idiot -- Rusty Russell