diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2007-01-15 17:45:04 +0000 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2007-01-15 17:45:04 +0000 |
commit | 6de815be5cb06e9e8df46fcfdfbf611bce24c99c (patch) | |
tree | 5862fe149b001ccfa1c2229340231b70875a4809 /manual/Makefile | |
parent | e07b30d9e2a3724dd10d7aa7bc2435f449b3a244 (diff) |
OS X doesn't know xargs -i, so use -I instead. Should fix FS#6540
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12017 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'manual/Makefile')
-rw-r--r-- | manual/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manual/Makefile b/manual/Makefile index 8a8b7c8494..4186399276 100644 --- a/manual/Makefile +++ b/manual/Makefile @@ -4,7 +4,7 @@ # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ # \/ \/ \/ \/ \/ -# $Id:$ +# $Id$ # .PHONY: all buildmanual clean @@ -14,8 +14,8 @@ all: manual-pdf manual-prep: rockbox.tex @if [ "$(OBJDIR)" = "" ]; then echo Run make in you build directory!; false; fi @mkdir -p $(OBJDIR) - @find * -type d \! -regex '.*\.svn.*' | xargs -i mkdir -p $(OBJDIR)/{} - @find * -type f \! -regex '.*\.svn.*' | xargs -i cp {} $(OBJDIR)/{} + @find * -type d \! -regex '.*\.svn.*' | xargs -I {} mkdir -p $(OBJDIR)/{} + @find * -type f \! -regex '.*\.svn.*' | xargs -I {} cp {} $(OBJDIR)/{} @perl credits.pl < ../docs/CREDITS | iconv -f utf-8 -t iso-8859-1 > $(OBJDIR)/CREDITS.tex @echo "\newcommand{\platform}{${MANUALDEV}}" > $(OBJDIR)/rockbox-build.tex @echo "\newcommand{\buildversion}{$(VERSION)}" >> $(OBJDIR)/rockbox-build.tex |