Rockbox Development > Starting Development and Compiling
compiling manual
paulheu:
I recently moved to Parallels and installed latest debian distro.. Rockbox compiles fine, but building a manual won't go..
I get a
make[1] *** [manual-prep] Error 1
I have installed tex and gs-eps packages.. anything else needed?
Febs:
I am having a similar problem using VMWare, and I believe that it is due to this change made yesterday by bluebrother. I am trying to track him down on IRC to see what can be done about it.
bluebrother:
yes, I broke it :(
It seems like xargs on OS X doesn't like -i, older linux versions (like the vmware image seems to contain) don't like -I. --replace works on linux only ...
You can try by replacing two lines in manual/Makefile
--- Code: ---- @find * -type d \! -regex '.*\.svn.*' | xargs -I {} mkdir -p $(OBJDIR)/{}
- @find * -type f \! -regex '.*\.svn.*' | xargs -I {} cp {} $(OBJDIR)/{}
+ find * -type d \! -regex '.*\.svn.*' -exec mkdir -p $(OBJDIR)/{} \;
+ find * -type f \! -regex '.*\.svn.*' -exec cp {} $(OBJDIR)/{} \;
--- End code ---
I'll recheck this when I come home tonight and change it if it works as expected. ATM I can only access a really outdated linux box.
paulheu:
That fixed that, but now I get this error:
! LaTeX Error: File `scrreprt.cls' not found.
bluebrother:
you need to have KOMA-Script installed. That's a standard package for LaTeX, on my box (Fedora) it's contained in the package tetex-latex. No idea if that's a stand alone package for debian (but that requirement hasn't changed for a couple of months).
Navigation
[0] Message Index
[#] Next page
Go to full version