SHA256
3
0
forked from pool/cpio
cpio/cpio-use_new_ascii_format.patch
Michal Seben abb8c85948 Accepting request 35734 from home:mseben:branches:Archiving
Copy from home:mseben:branches:Archiving/cpio via accept of submit request 35734 revision 8.
Request was accepted with message:

OBS-URL: https://build.opensuse.org/request/show/35734
OBS-URL: https://build.opensuse.org/package/show/Archiving/cpio?expand=0&rev=19
2010-03-25 13:18:28 +00:00

27 lines
945 B
Diff

Index: doc/cpio.info
===================================================================
--- doc/cpio.info.orig
+++ doc/cpio.info
@@ -266,7 +266,8 @@ File: cpio.info, Node: Options, Prev:
Set the I/O block size to BLOCK-SIZE * 512 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 IO-SIZE'
`--io-size=IO-SIZE'
Index: src/main.c
===================================================================
--- src/main.c.orig
+++ src/main.c
@@ -339,6 +339,7 @@ parse_opt (int key, char *arg, struct ar
case 'c': /* Use the old portable ASCII format. */
if (archive_format != arf_unknown)
error (0, EXIT_FAILURE, _("Archive format multiply defined"));
+#define SVR4_COMPAT
#ifdef SVR4_COMPAT
archive_format = arf_newascii; /* -H newc. */
#else