From: Rusty Russell <rusty@rustcorp.com.au>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] makefile problem on ppc
Date: Thu, 25 Mar 2004 14:32:52 +1100 [thread overview]
Message-ID: <1080185571.25555.4.camel@bach> (raw)
In-Reply-To: <OF7DEA6278.DAEDE995-ONC1256E60.00592A82-C1256E60.005A7C21@de.ibm.com>
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
prev parent reply other threads:[~2004-03-25 3:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-03-23 16:21 [Qemu-devel] makefile problem on ppc Denis J Barrow
2004-03-25 3:32 ` Rusty Russell [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1080185571.25555.4.camel@bach \
--to=rusty@rustcorp.com.au \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.