From c4e85665c6a394eb99f9d97a9cd01ef723883d6d Mon Sep 17 00:00:00 2001 From: peter Date: Fri, 16 Aug 1996 14:38:17 +0000 Subject: Fix shar so that it doesn't generate: # This shar contains: # length mode name # ------ ---------- ------------------------------------------ # 9525 (null) -rw-r--r-- # 3768 (null) -rw-r--r-- ^^^^^^^^^^^ This is a long/off_t printf problem. The only problem with doing this, is that touching the sources with patch causes it to want to go and regenerate it's locale databases using some gnu tools I've never heard of before. :-( Since patch-ac doesn't actually change any messages, I've cheated and touched the dependency files in post-patch. Please, no pukeing, I know it's a gross hack. ;-) --- archivers/sharutils/files/patch-ac | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 archivers/sharutils/files/patch-ac (limited to 'archivers/sharutils/files') diff --git a/archivers/sharutils/files/patch-ac b/archivers/sharutils/files/patch-ac new file mode 100644 index 000000000000..7b018fe3a867 --- /dev/null +++ b/archivers/sharutils/files/patch-ac @@ -0,0 +1,11 @@ +--- shar.c.dist Fri Aug 16 22:19:04 1996 ++++ shar.c Fri Aug 16 22:19:36 1996 +@@ -589,7 +589,7 @@ + static int + generate_one_header_line (const char *local_name, const char *restore_name) + { +- fprintf (output, "# %6ld %s %s\n", struct_stat.st_size, ++ fprintf (output, "# %6ld %s %s\n", (long)struct_stat.st_size, + mode_string (struct_stat.st_mode), restore_name); + return 0; + } -- cgit