All of lore.kernel.org
 help / color / mirror / Atom feed
* xen-3.1.0 compile error
@ 2007-06-18 10:36 ferdi
  2007-06-18 11:02 ` pradeep singh rautela
  2007-06-18 11:12 ` Keir Fraser
  0 siblings, 2 replies; 3+ messages in thread
From: ferdi @ 2007-06-18 10:36 UTC (permalink / raw)
  To: xen-devel

Hi everyboby,

during compilation from sources, I'm getting this error. The build process stops always. I think, it's in the doc-section. The "./chk build" script lists an "OK" to every checked item.

-------------------
rm -rf /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen
install -d -m0755 -p /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen
make -C xen-api install
make[3]: Entering directory `/home/fgiese/xen-3.1.0-src/docs/xen-api'
install -d -m0755 -p /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen/ps
install -d -m0755 -p /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen/pdf
cp xenapi.ps /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen/ps
cp: cannot stat `xenapi.ps': No such file or directory
make[3]: *** [install] Error 1
make[3]: Leaving directory `/home/fgiese/xen-3.1.0-src/docs/xen-api'
make[2]: *** [install] Error 2
make[2]: Leaving directory `/home/fgiese/xen-3.1.0-src/docs'
install -d -m0755 -p /home/fgiese/xen-3.1.0-src/dist/check
install -m0644 -p ./COPYING /home/fgiese/xen-3.1.0-src/dist
install -m0644 -p ./README /home/fgiese/xen-3.1.0-src/dist
install -m0755 -p ./install.sh /home/fgiese/xen-3.1.0-src/dist
install -m0755 -p tools/check/chk tools/check/check_* /home/fgiese/xen-3.1.0-src/dist/check
make[1]: Leaving directory `/home/fgiese/xen-3.1.0-src'
------------------

What is the solution to avoid this error?

Thanks
Ferdi

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: xen-3.1.0 compile error
  2007-06-18 10:36 xen-3.1.0 compile error ferdi
@ 2007-06-18 11:02 ` pradeep singh rautela
  2007-06-18 11:12 ` Keir Fraser
  1 sibling, 0 replies; 3+ messages in thread
From: pradeep singh rautela @ 2007-06-18 11:02 UTC (permalink / raw)
  To: ferdi@giese-koerbecke.de; +Cc: xen-devel

On 6/18/07, ferdi@giese-koerbecke.de <ferdi@giese-koerbecke.de> wrote:
> Hi everyboby,
>
> during compilation from sources, I'm getting this error. The build process stops always. I think, it's in the doc-section. The "./chk build" script lists an "OK" to every checked item.
>
> -------------------
[1]
>  rm -rf /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen
> install -d -m0755 -p /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen
> make -C xen-api install
> make[3]: Entering directory `/home/fgiese/xen-3.1.0-src/docs/xen-api'
> install -d -m0755 -p /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen/ps
> install -d -m0755 -p /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen/pdf
> cp xenapi.ps /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen/ps
> cp: cannot stat `xenapi.ps': No such file or directory


In which dir are you?
xenapi.ps seems missing.
did you remove it explicitly or is it something Xen scripts are doing?

Thanks

> make[3]: *** [install] Error 1
> make[3]: Leaving directory `/home/fgiese/xen-3.1.0-src/docs/xen-api'
> make[2]: *** [install] Error 2
> make[2]: Leaving directory `/home/fgiese/xen-3.1.0-src/docs'
> install -d -m0755 -p /home/fgiese/xen-3.1.0-src/dist/check
> install -m0644 -p ./COPYING /home/fgiese/xen-3.1.0-src/dist
> install -m0644 -p ./README /home/fgiese/xen-3.1.0-src/dist
> install -m0755 -p ./install.sh /home/fgiese/xen-3.1.0-src/dist
> install -m0755 -p tools/check/chk tools/check/check_* /home/fgiese/xen-3.1.0-src/dist/check
> make[1]: Leaving directory `/home/fgiese/xen-3.1.0-src'
> ------------------
>
> What is the solution to avoid this error?
>
> Thanks
> Ferdi
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>


-- 
---
pradeep singh rautela

"Genius is 1% inspiration, and 99% perspiration" - not me :)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: xen-3.1.0 compile error
  2007-06-18 10:36 xen-3.1.0 compile error ferdi
  2007-06-18 11:02 ` pradeep singh rautela
@ 2007-06-18 11:12 ` Keir Fraser
  1 sibling, 0 replies; 3+ messages in thread
From: Keir Fraser @ 2007-06-18 11:12 UTC (permalink / raw)
  To: ferdi, xen-devel

It's a bug in the docs Makefile, causing the docs installation to fail if
you don't have Graphviz installed. Either install Graphviz, or edit
docs/xen-api/Makefile and delete the lines 'cp xenapi.pdf ...' and 'cp
xenapi.ps ...'.

 -- Keir

On 18/6/07 11:36, "ferdi@giese-koerbecke.de" <ferdi@giese-koerbecke.de>
wrote:

> Hi everyboby,
> 
> during compilation from sources, I'm getting this error. The build process
> stops always. I think, it's in the doc-section. The "./chk build" script lists
> an "OK" to every checked item.
> 
> -------------------
> rm -rf /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen
> install -d -m0755 -p /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen
> make -C xen-api install
> make[3]: Entering directory `/home/fgiese/xen-3.1.0-src/docs/xen-api'
> install -d -m0755 -p
> /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen/ps
> install -d -m0755 -p
> /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen/pdf
> cp xenapi.ps /home/fgiese/xen-3.1.0-src/dist/install/usr/share/doc/xen/ps
> cp: cannot stat `xenapi.ps': No such file or directory
> make[3]: *** [install] Error 1
> make[3]: Leaving directory `/home/fgiese/xen-3.1.0-src/docs/xen-api'
> make[2]: *** [install] Error 2
> make[2]: Leaving directory `/home/fgiese/xen-3.1.0-src/docs'
> install -d -m0755 -p /home/fgiese/xen-3.1.0-src/dist/check
> install -m0644 -p ./COPYING /home/fgiese/xen-3.1.0-src/dist
> install -m0644 -p ./README /home/fgiese/xen-3.1.0-src/dist
> install -m0755 -p ./install.sh /home/fgiese/xen-3.1.0-src/dist
> install -m0755 -p tools/check/chk tools/check/check_*
> /home/fgiese/xen-3.1.0-src/dist/check
> make[1]: Leaving directory `/home/fgiese/xen-3.1.0-src'
> ------------------
> 
> What is the solution to avoid this error?
> 
> Thanks
> Ferdi
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-06-18 11:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-18 10:36 xen-3.1.0 compile error ferdi
2007-06-18 11:02 ` pradeep singh rautela
2007-06-18 11:12 ` Keir Fraser

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.