diff options
author | Jasper Lievisse Adriaanse <[email protected]> | 2015-04-16 13:08:28 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-12-05 20:27:38 +0100 |
commit | dc5d80a7d6d3f861d6de5d3705b391a91a7209d7 (patch) | |
tree | be4d959c6b492265ec9684c76a48349de470693a /src/fr-command-cpio.c | |
parent | 9ed63df945aedeb9de04719854c05a2f7cd25f10 (diff) | |
download | engrampa-dc5d80a7d6d3f861d6de5d3705b391a91a7209d7.tar.bz2 engrampa-dc5d80a7d6d3f861d6de5d3705b391a91a7209d7.tar.xz |
add a configure environment variable to select the cpio path
on some systems (like OpenBSD), gcpio is prefered over the base cpio.
origin commit:
https://gitlab.gnome.org/GNOME/file-roller/commit/8a51165
Diffstat (limited to 'src/fr-command-cpio.c')
-rw-r--r-- | src/fr-command-cpio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fr-command-cpio.c b/src/fr-command-cpio.c index 19a3ed1..6cbe61d 100644 --- a/src/fr-command-cpio.c +++ b/src/fr-command-cpio.c @@ -176,7 +176,7 @@ fr_command_cpio_list (FrCommand *comm) fr_process_begin_command (comm->process, "sh"); fr_process_add_arg (comm->process, "-c"); - fr_process_add_arg_concat (comm->process, "cpio -itv < ", comm->e_filename, NULL); + fr_process_add_arg_concat (comm->process, CPIO_PATH " -itv < ", comm->e_filename, NULL); fr_process_end_command (comm->process); fr_process_start (comm->process); } @@ -240,7 +240,7 @@ fr_command_cpio_get_capabilities (FrCommand *comm, FrCommandCap capabilities; capabilities = FR_COMMAND_CAN_ARCHIVE_MANY_FILES; - if (is_program_available ("cpio", check_command)) + if (is_program_available (CPIO_PATH, check_command)) capabilities |= FR_COMMAND_CAN_READ; return capabilities; |