summaryrefslogtreecommitdiffstats
path: root/archivers/file-roller
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2007-01-13 04:50:52 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2007-01-13 04:50:52 +0800
commit52c5e93ab5a2d0816078a8d3be2ecc16ca7973f9 (patch)
tree3efca8abfacd6341bb49f419d953041ed98f47b6 /archivers/file-roller
parent7824c6dcc1e063fb9f4fcb68d6a5a16ee36968d3 (diff)
downloadmarcuscom-ports-52c5e93ab5a2d0816078a8d3be2ecc16ca7973f9.tar
marcuscom-ports-52c5e93ab5a2d0816078a8d3be2ecc16ca7973f9.tar.gz
marcuscom-ports-52c5e93ab5a2d0816078a8d3be2ecc16ca7973f9.tar.bz2
marcuscom-ports-52c5e93ab5a2d0816078a8d3be2ecc16ca7973f9.tar.lz
marcuscom-ports-52c5e93ab5a2d0816078a8d3be2ecc16ca7973f9.tar.xz
marcuscom-ports-52c5e93ab5a2d0816078a8d3be2ecc16ca7973f9.tar.zst
marcuscom-ports-52c5e93ab5a2d0816078a8d3be2ecc16ca7973f9.zip
Remove a patch that is no longer needed.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8192 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'archivers/file-roller')
-rw-r--r--archivers/file-roller/files/patch-src_fr-command-iso.c43
1 files changed, 0 insertions, 43 deletions
diff --git a/archivers/file-roller/files/patch-src_fr-command-iso.c b/archivers/file-roller/files/patch-src_fr-command-iso.c
deleted file mode 100644
index d0e0c12a2..000000000
--- a/archivers/file-roller/files/patch-src_fr-command-iso.c
+++ /dev/null
@@ -1,43 +0,0 @@
---- src/fr-command-iso.c.orig Mon Jan 8 17:06:36 2007
-+++ src/fr-command-iso.c Wed Jan 10 14:43:17 2007
-@@ -164,6 +164,7 @@ fr_command_iso_extract (FRCommand *comm
- gboolean junk_paths,
- const char *password)
- {
-+ FRCommandIso *comm_iso = FR_COMMAND_ISO (comm);
- char *e_dest_dir;
- char *e_archive_filename;
- GList *scan;
-@@ -173,6 +174,7 @@ fr_command_iso_extract (FRCommand *comm
-
- for (scan = file_list; scan; scan = scan->next) {
- char *path = scan->data;
-+ char *extract_path;
- const char *filename;
- char *file_dir, *e_temp_dest_dir = NULL, *temp_dest_dir = NULL;
-
-@@ -187,6 +189,8 @@ fr_command_iso_extract (FRCommand *comm
- if (e_temp_dest_dir == NULL)
- continue;
-
-+ extract_path = g_build_filename (comm_iso->cur_path, path, NULL);
-+
- temp_dest_dir = unescape_str (e_temp_dest_dir);
- ensure_dir_exists (temp_dest_dir, 0700);
-
-@@ -195,13 +199,14 @@ fr_command_iso_extract (FRCommand *comm
- fr_process_add_arg (comm->process, "-i");
- fr_process_add_arg (comm->process, e_archive_filename);
- fr_process_add_arg (comm->process, "-x");
-- fr_process_add_arg (comm->process, path);
-+ fr_process_add_arg (comm->process, extract_path);
- fr_process_add_arg (comm->process, ">");
- fr_process_add_arg (comm->process, filename);
- fr_process_end_command (comm->process);
-
- g_free (e_temp_dest_dir);
- g_free (temp_dest_dir);
-+ g_free (extract_path);
- }
-
- g_free (e_dest_dir);