summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2cf6b4b)
raw | patch | inline | side by side (parent: 2cf6b4b)
author | Andreas Schwab <schwab@linux-m68k.org> | |
Sat, 24 Oct 2009 13:06:57 +0000 (15:06 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 24 Oct 2009 19:25:01 +0000 (12:25 -0700) |
The first argument of the tar command is interpreted as a bundle of
letters specifying the mode of operation and additional options, with
any option arguments taken from subsequent words on the command line
as needed. The implementation of tar in busybox treats this bundle
as if preceded by a dash and then parses it by getopt rules, which
mishandles 'tar xfo -'. Use 'tar xof -' instead to work this around.
Signed-off-by: Andreas Schwab <schwab@linux-m68k.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
letters specifying the mode of operation and additional options, with
any option arguments taken from subsequent words on the command line
as needed. The implementation of tar in busybox treats this bundle
as if preceded by a dash and then parses it by getopt rules, which
mishandles 'tar xfo -'. Use 'tar xof -' instead to work this around.
Signed-off-by: Andreas Schwab <schwab@linux-m68k.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
templates/Makefile | patch | blob | history |
diff --git a/templates/Makefile b/templates/Makefile
index a12c6e214e65d39136b1ed41a8ff0ea25e28f91b..408f0137a8342414eedba3a02372ea1ad6050117 100644 (file)
--- a/templates/Makefile
+++ b/templates/Makefile
install: all
$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(template_instdir_SQ)'
(cd blt && $(TAR) cf - .) | \
- (cd '$(DESTDIR_SQ)$(template_instdir_SQ)' && umask 022 && $(TAR) xfo -)
+ (cd '$(DESTDIR_SQ)$(template_instdir_SQ)' && umask 022 && $(TAR) xof -)