* [Qemu-devel] Problem with make install on OS X
@ 2004-09-14 13:35 René Korthaus
2004-09-14 14:50 ` Bernard Sauterel
0 siblings, 1 reply; 6+ messages in thread
From: René Korthaus @ 2004-09-14 13:35 UTC (permalink / raw)
To: qemu-devel
Hello,
got the cvs from today compiled on my panther machine! Now i wanted to
install, i get this error:
cordney:~/cocoa/qemu cordney$ make install
for d in i386-softmmu ppc-softmmu; do \
make -C $d all || exit 1 ; \
done
make[1]: Nothing to be done for `all'.
make[1]: Nothing to be done for `all'.
mkdir -p "qemu/bin"
install -m 755 -s qemu-img "qemu/bin"
mkdir -p "qemu/share/qemu"
install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin \
pc-bios/vgabios-cirrus.bin \
pc-bios/ppc_rom.bin \
pc-bios/linux_boot.bin "qemu/share/qemu"
mkdir -p "qemu/share/doc/qemu"
install -m 644 qemu-doc.html qemu-tech.html "qemu/share/doc/qemu"
mkdir -p "qemu/share/man/man1"
install qemu.1 qemu-mkcow.1 "qemu/share/man/man1"
for d in i386-softmmu ppc-softmmu; do \
make -C $d install || exit 1 ; \
done
install -m 755 -s qemu "qemu/bin"
install: qemu/bin: Not a directory
make[1]: *** [install] Error 71
make: *** [install] Error 1
wanted to install into a subdirectory "qemu" and already changed
$prefix in ./configure.
He seems to install everything but the qemu executable.
Thanks for help.
cordney*
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Problem with make install on OS X
2004-09-14 13:35 [Qemu-devel] Problem with make install on OS X René Korthaus
@ 2004-09-14 14:50 ` Bernard Sauterel
2004-09-14 15:06 ` René Korthaus
2004-09-14 19:43 ` René Korthaus
0 siblings, 2 replies; 6+ messages in thread
From: Bernard Sauterel @ 2004-09-14 14:50 UTC (permalink / raw)
To: qemu-devel
Does it work if you don't modify "./configure" ?
On Sep 14, 2004, at 15:35, René Korthaus wrote:
> Hello,
>
> got the cvs from today compiled on my panther machine! Now i wanted to
> install, i get this error:
>
> cordney:~/cocoa/qemu cordney$ make install
> for d in i386-softmmu ppc-softmmu; do \
> make -C $d all || exit 1 ; \
> done
>
> make[1]: Nothing to be done for `all'.
> make[1]: Nothing to be done for `all'.
> mkdir -p "qemu/bin"
> install -m 755 -s qemu-img "qemu/bin"
> mkdir -p "qemu/share/qemu"
> install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin \
> pc-bios/vgabios-cirrus.bin \
> pc-bios/ppc_rom.bin \
> pc-bios/linux_boot.bin "qemu/share/qemu"
> mkdir -p "qemu/share/doc/qemu"
> install -m 644 qemu-doc.html qemu-tech.html "qemu/share/doc/qemu"
> mkdir -p "qemu/share/man/man1"
> install qemu.1 qemu-mkcow.1 "qemu/share/man/man1"
> for d in i386-softmmu ppc-softmmu; do \
> make -C $d install || exit 1 ; \
> done
> install -m 755 -s qemu "qemu/bin"
> install: qemu/bin: Not a directory
> make[1]: *** [install] Error 71
> make: *** [install] Error 1
>
> wanted to install into a subdirectory "qemu" and already changed
> $prefix in ./configure.
> He seems to install everything but the qemu executable.
>
> Thanks for help.
> cordney*
>
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Problem with make install on OS X
2004-09-14 14:50 ` Bernard Sauterel
@ 2004-09-14 15:06 ` René Korthaus
2004-09-16 10:37 ` stegefin
2004-09-14 19:43 ` René Korthaus
1 sibling, 1 reply; 6+ messages in thread
From: René Korthaus @ 2004-09-14 15:06 UTC (permalink / raw)
To: qemu-devel
Am 14.09.2004 um 16:50 schrieb Bernard Sauterel:
> Does it work if you don't modify "./configure" ?
>
Havent tried because that will install/configure qemu to /usr/local/bin
and thats what i want to avoid, cause i want to use it with relative
paths instead of absolute ones.
When the error occurs, the directory qemu/bin already exists, thats
what confuses me. Any other suggestion?
> On Sep 14, 2004, at 15:35, René Korthaus wrote:
>
>> Hello,
>>
>> got the cvs from today compiled on my panther machine! Now i wanted
>> to install, i get this error:
>>
>> cordney:~/cocoa/qemu cordney$ make install
>> for d in i386-softmmu ppc-softmmu; do \
>> make -C $d all || exit 1 ; \
>> done
>>
>> make[1]: Nothing to be done for `all'.
>> make[1]: Nothing to be done for `all'.
>> mkdir -p "qemu/bin"
>> install -m 755 -s qemu-img "qemu/bin"
>> mkdir -p "qemu/share/qemu"
>> install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin \
>> pc-bios/vgabios-cirrus.bin \
>> pc-bios/ppc_rom.bin \
>> pc-bios/linux_boot.bin "qemu/share/qemu"
>> mkdir -p "qemu/share/doc/qemu"
>> install -m 644 qemu-doc.html qemu-tech.html "qemu/share/doc/qemu"
>> mkdir -p "qemu/share/man/man1"
>> install qemu.1 qemu-mkcow.1 "qemu/share/man/man1"
>> for d in i386-softmmu ppc-softmmu; do \
>> make -C $d install || exit 1 ; \
>> done
>> install -m 755 -s qemu "qemu/bin"
>> install: qemu/bin: Not a directory
>> make[1]: *** [install] Error 71
>> make: *** [install] Error 1
>>
>> wanted to install into a subdirectory "qemu" and already changed
>> $prefix in ./configure.
>> He seems to install everything but the qemu executable.
>>
>> Thanks for help.
>> cordney*
>>
>>
>>
>> _______________________________________________
>> Qemu-devel mailing list
>> Qemu-devel@nongnu.org
>> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>>
>
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Problem with make install on OS X
2004-09-14 14:50 ` Bernard Sauterel
2004-09-14 15:06 ` René Korthaus
@ 2004-09-14 19:43 ` René Korthaus
2004-09-14 20:06 ` Paul Brook
1 sibling, 1 reply; 6+ messages in thread
From: René Korthaus @ 2004-09-14 19:43 UTC (permalink / raw)
To: qemu-devel
Am 14.09.2004 um 16:50 schrieb Bernard Sauterel:
> Does it work if you don't modify "./configure" ?
OK, now i tried. It works fine. That bothers me. I want to install qemu
somewhere else!!! Grrrrr.... How can i do this??? Can someone please
give an answer??? Fabrice, you should know.... really need it.
btw: Can the real path to sdl-config be applied to makefile? I wondered
about half an hour of this "WARNING: Cannot compile statically.... make
error" till i found the path (/usr/local/bin) and added it. Cant it be
detected by which os i use?
>
> On Sep 14, 2004, at 15:35, René Korthaus wrote:
>
>> Hello,
>>
>> got the cvs from today compiled on my panther machine! Now i wanted
>> to install, i get this error:
>>
>> cordney:~/cocoa/qemu cordney$ make install
>> for d in i386-softmmu ppc-softmmu; do \
>> make -C $d all || exit 1 ; \
>> done
>>
>> make[1]: Nothing to be done for `all'.
>> make[1]: Nothing to be done for `all'.
>> mkdir -p "qemu/bin"
>> install -m 755 -s qemu-img "qemu/bin"
>> mkdir -p "qemu/share/qemu"
>> install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin \
>> pc-bios/vgabios-cirrus.bin \
>> pc-bios/ppc_rom.bin \
>> pc-bios/linux_boot.bin "qemu/share/qemu"
>> mkdir -p "qemu/share/doc/qemu"
>> install -m 644 qemu-doc.html qemu-tech.html "qemu/share/doc/qemu"
>> mkdir -p "qemu/share/man/man1"
>> install qemu.1 qemu-mkcow.1 "qemu/share/man/man1"
>> for d in i386-softmmu ppc-softmmu; do \
>> make -C $d install || exit 1 ; \
>> done
>> install -m 755 -s qemu "qemu/bin"
>> install: qemu/bin: Not a directory
>> make[1]: *** [install] Error 71
>> make: *** [install] Error 1
>>
>> wanted to install into a subdirectory "qemu" and already changed
>> $prefix in ./configure.
>> He seems to install everything but the qemu executable.
>>
>> Thanks for help.
>> cordney*
>>
>>
>>
>> _______________________________________________
>> Qemu-devel mailing list
>> Qemu-devel@nongnu.org
>> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>>
>
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Problem with make install on OS X
2004-09-14 19:43 ` René Korthaus
@ 2004-09-14 20:06 ` Paul Brook
0 siblings, 0 replies; 6+ messages in thread
From: Paul Brook @ 2004-09-14 20:06 UTC (permalink / raw)
To: qemu-devel
On Tuesday 14 September 2004 20:43, René Korthaus wrote:
> Am 14.09.2004 um 16:50 schrieb Bernard Sauterel:
> > Does it work if you don't modify "./configure" ?
>
> OK, now i tried. It works fine. That bothers me. I want to install qemu
> somewhere else!!! Grrrrr.... How can i do this??? Can someone please
> give an answer???
Have you tried
./configure --prefix=/somewhere/else
Works for me on i686-linux. You might need to specify an absolute path.
Paul
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Problem with make install on OS X
2004-09-14 15:06 ` René Korthaus
@ 2004-09-16 10:37 ` stegefin
0 siblings, 0 replies; 6+ messages in thread
From: stegefin @ 2004-09-16 10:37 UTC (permalink / raw)
To: qemu-devel, René Korthaus
Selon René Korthaus <wlannews@cordney.com>:
>
> Am 14.09.2004 um 16:50 schrieb Bernard Sauterel:
>
> > Does it work if you don't modify "./configure" ?
> >
> Havent tried because that will install/configure qemu to /usr/local/bin
> and thats what i want to avoid, cause i want to use it with relative
> paths instead of absolute ones.
> When the error occurs, the directory qemu/bin already exists, thats
> what confuses me. Any other suggestion?
You should have a look to the darwinport package, it has patches you might be
interested in.
> > On Sep 14, 2004, at 15:35, René Korthaus wrote:
> >
> >> Hello,
> >>
> >> got the cvs from today compiled on my panther machine! Now i wanted
> >> to install, i get this error:
> >>
> >> cordney:~/cocoa/qemu cordney$ make install
> >> for d in i386-softmmu ppc-softmmu; do \
> >> make -C $d all || exit 1 ; \
> >> done
> >>
> >> make[1]: Nothing to be done for `all'.
> >> make[1]: Nothing to be done for `all'.
> >> mkdir -p "qemu/bin"
> >> install -m 755 -s qemu-img "qemu/bin"
> >> mkdir -p "qemu/share/qemu"
> >> install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin \
> >> pc-bios/vgabios-cirrus.bin \
> >> pc-bios/ppc_rom.bin \
> >> pc-bios/linux_boot.bin "qemu/share/qemu"
> >> mkdir -p "qemu/share/doc/qemu"
> >> install -m 644 qemu-doc.html qemu-tech.html "qemu/share/doc/qemu"
> >> mkdir -p "qemu/share/man/man1"
> >> install qemu.1 qemu-mkcow.1 "qemu/share/man/man1"
> >> for d in i386-softmmu ppc-softmmu; do \
> >> make -C $d install || exit 1 ; \
> >> done
> >> install -m 755 -s qemu "qemu/bin"
> >> install: qemu/bin: Not a directory
> >> make[1]: *** [install] Error 71
> >> make: *** [install] Error 1
> >>
> >> wanted to install into a subdirectory "qemu" and already changed
> >> $prefix in ./configure.
> >> He seems to install everything but the qemu executable.
> >>
> >> Thanks for help.
> >> cordney*
> >>
> >>
> >>
> >> _______________________________________________
> >> Qemu-devel mailing list
> >> Qemu-devel@nongnu.org
> >> http://lists.nongnu.org/mailman/listinfo/qemu-devel
> >>
> >
> >
> >
> > _______________________________________________
> > Qemu-devel mailing list
> > Qemu-devel@nongnu.org
> > http://lists.nongnu.org/mailman/listinfo/qemu-devel
> >
>
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2004-09-16 10:48 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-09-14 13:35 [Qemu-devel] Problem with make install on OS X René Korthaus
2004-09-14 14:50 ` Bernard Sauterel
2004-09-14 15:06 ` René Korthaus
2004-09-16 10:37 ` stegefin
2004-09-14 19:43 ` René Korthaus
2004-09-14 20:06 ` Paul Brook
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).