diff options
author | rbuj <[email protected]> | 2020-01-01 23:39:04 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-01-04 13:29:35 +0100 |
commit | 4deb89e7fa95e8abffb86f517878a9bc0d30b7bc (patch) | |
tree | f67633477c1d14b05c8918687607bee296933973 /src/fr-process.c | |
parent | f0805f3afe61c035cc3477cba880322c15e95766 (diff) | |
download | engrampa-4deb89e7fa95e8abffb86f517878a9bc0d30b7bc.tar.bz2 engrampa-4deb89e7fa95e8abffb86f517878a9bc0d30b7bc.tar.xz |
fr-command-rpm: Use rpm2cpio binary shipped with rpm package
closes #350
Diffstat (limited to 'src/fr-process.c')
-rw-r--r-- | src/fr-process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fr-process.c b/src/fr-process.c index 73395ad..cfd4033 100644 --- a/src/fr-process.c +++ b/src/fr-process.c @@ -641,7 +641,7 @@ child_setup (gpointer user_data) FrProcess *process = user_data; if (process->priv->use_standard_locale) - putenv ("LC_MESSAGES=C"); + putenv ("LC_ALL=C"); /* detach from the tty */ @@ -745,7 +745,7 @@ start_current_command (FrProcess *process) int j; if (process->priv->use_standard_locale) - g_print ("\tLC_MESSAGES=C\n"); + g_print ("\tLC_ALL=C\n"); if (info->dir != NULL) g_print ("\tcd %s\n", info->dir); |