diff options
author | Rob Landley <rob@landley.net> | 2014-09-09 23:44:48 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-09-09 23:44:48 -0500 |
commit | f8c411cc26460d1cc920c15ad9e57d994f072129 (patch) | |
tree | 3768eaa7863be18deac9a1e5265d5527a6822752 | |
parent | c6705af4231b8071830721f98021d0e79223da12 (diff) | |
download | toybox-f8c411cc26460d1cc920c15ad9e57d994f072129.tar.gz |
Ignore -m option to cpio, it's what we do anyway so it's not an error.
-rw-r--r-- | toys/posix/cpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/cpio.c b/toys/posix/cpio.c index 39fd9c33..4ead989e 100644 --- a/toys/posix/cpio.c +++ b/toys/posix/cpio.c @@ -13,7 +13,7 @@ * In order: magic ino mode uid gid nlink mtime filesize devmajor devminor * rdevmajor rdevminor namesize check -USE_CPIO(NEWTOY(cpio, "duH:i|t|F:v(verbose)o|[!io][!ot]", TOYFLAG_BIN)) +USE_CPIO(NEWTOY(cpio, "mduH:i|t|F:v(verbose)o|[!io][!ot]", TOYFLAG_BIN)) config CPIO bool "cpio" |