2009-12-08 11:21:50 +01:00
|
|
|
Index: doc/cpio.info
|
|
|
|
===================================================================
|
|
|
|
--- doc/cpio.info.orig
|
|
|
|
+++ doc/cpio.info
|
2015-10-09 13:20:18 +02:00
|
|
|
@@ -216,7 +216,8 @@ option, e.g.:
|
|
|
|
'-B'
|
|
|
|
Set the I/O block size to 5120 bytes.
|
|
|
|
'-c'
|
|
|
|
- Use the old portable (ASCII) archive format.
|
|
|
|
+ Identical to "-H newc", use the new (SVR4) portable format.
|
|
|
|
+ If you wish the old portable (ASCII) archive format, use "-H odc" instead.
|
|
|
|
'-C NUMBER'
|
|
|
|
'--io-size=NUMBER'
|
|
|
|
Set the I/O block size to the given NUMBER of bytes.
|
|
|
|
@@ -296,7 +297,8 @@ option.
|
|
|
|
'-B'
|
|
|
|
Set the I/O block size to 5120 bytes.
|
|
|
|
'-c'
|
|
|
|
- Use the old portable (ASCII) archive format.
|
|
|
|
+ Identical to "-H newc", use the new (SVR4) portable format.
|
|
|
|
+ If you wish the old portable (ASCII) archive format, use "-H odc" instead.
|
|
|
|
'-C NUMBER'
|
|
|
|
'--io-size=NUMBER'
|
|
|
|
Set the I/O block size to the given NUMBER of bytes.
|
|
|
|
@@ -406,7 +408,8 @@ option.
|
|
|
|
'-B'
|
|
|
|
Set the I/O block size to 5120 bytes.
|
|
|
|
'-c'
|
|
|
|
- Use the old portable (ASCII) archive format.
|
|
|
|
+ Identical to "-H newc", use the new (SVR4) portable format.
|
|
|
|
+ If you wish the old portable (ASCII) archive format, use "-H odc" instead.
|
|
|
|
'-C NUMBER'
|
|
|
|
'--io-size=NUMBER'
|
|
|
|
Set the I/O block size to the given NUMBER of bytes.
|
|
|
|
@@ -554,7 +557,8 @@ option is valid.
|
2006-12-19 00:15:29 +01:00
|
|
|
|
2015-10-09 13:20:18 +02:00
|
|
|
'-c'
|
|
|
|
[*note copy-in::,*note copy-out::,*note copy-pass::]
|
2006-12-19 00:15:29 +01:00
|
|
|
- Use the old portable (ASCII) archive format.
|
|
|
|
+ Identical to "-H newc", use the new (SVR4) portable format.
|
|
|
|
+ If you wish the old portable (ASCII) archive format, use "-H odc" instead.
|
|
|
|
|
2015-10-09 13:20:18 +02:00
|
|
|
'-C IO-SIZE'
|
|
|
|
'--io-size=IO-SIZE'
|
2009-12-08 11:21:50 +01:00
|
|
|
Index: src/main.c
|
|
|
|
===================================================================
|
|
|
|
--- src/main.c.orig
|
2007-07-27 01:22:54 +02:00
|
|
|
+++ src/main.c
|
2015-10-09 13:20:18 +02:00
|
|
|
@@ -329,6 +329,7 @@ parse_opt (int key, char *arg, struct ar
|
2006-12-19 00:15:29 +01:00
|
|
|
case 'c': /* Use the old portable ASCII format. */
|
|
|
|
if (archive_format != arf_unknown)
|
2015-10-09 13:20:18 +02:00
|
|
|
USAGE_ERROR ((0, 0, _("Archive format multiply defined")));
|
2006-12-19 00:15:29 +01:00
|
|
|
+#define SVR4_COMPAT
|
|
|
|
#ifdef SVR4_COMPAT
|
|
|
|
archive_format = arf_newascii; /* -H newc. */
|
|
|
|
#else
|