summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2007-01-16 20:18:17 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2007-01-16 20:18:17 +0000
commit7d19c0f1352dbc7a9a0823aa306458ac0ae0e440 (patch)
tree3faf2d934d5c561193f30ec50a666befcd95f911
parent728dd279ebb5d143ca329f9a3e9370f9654135a0 (diff)
downloadrockbox-7d19c0f1352dbc7a9a0823aa306458ac0ae0e440.tar.gz
rockbox-7d19c0f1352dbc7a9a0823aa306458ac0ae0e440.zip
Older versions of xargs doesn't know -I (especially the vmware image one), so use find's -exec instead. Hopefully the last fix for this.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12026 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--manual/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/Makefile b/manual/Makefile
index 4186399276..6c403bb6f5 100644
--- a/manual/Makefile
+++ b/manual/Makefile
@@ -14,8 +14,8 @@ all: manual-pdf
14manual-prep: rockbox.tex 14manual-prep: rockbox.tex
15 @if [ "$(OBJDIR)" = "" ]; then echo Run make in you build directory!; false; fi 15 @if [ "$(OBJDIR)" = "" ]; then echo Run make in you build directory!; false; fi
16 @mkdir -p $(OBJDIR) 16 @mkdir -p $(OBJDIR)
17 @find * -type d \! -regex '.*\.svn.*' | xargs -I {} mkdir -p $(OBJDIR)/{} 17 find * -type d \! -regex '.*\.svn.*' -exec mkdir -p $(OBJDIR)/{} \;
18 @find * -type f \! -regex '.*\.svn.*' | xargs -I {} cp {} $(OBJDIR)/{} 18 find * -type f \! -regex '.*\.svn.*' -exec cp {} $(OBJDIR)/{} \;
19 @perl credits.pl < ../docs/CREDITS | iconv -f utf-8 -t iso-8859-1 > $(OBJDIR)/CREDITS.tex 19 @perl credits.pl < ../docs/CREDITS | iconv -f utf-8 -t iso-8859-1 > $(OBJDIR)/CREDITS.tex
20 @echo "\newcommand{\platform}{${MANUALDEV}}" > $(OBJDIR)/rockbox-build.tex 20 @echo "\newcommand{\platform}{${MANUALDEV}}" > $(OBJDIR)/rockbox-build.tex
21 @echo "\newcommand{\buildversion}{$(VERSION)}" >> $(OBJDIR)/rockbox-build.tex 21 @echo "\newcommand{\buildversion}{$(VERSION)}" >> $(OBJDIR)/rockbox-build.tex