portability: don't rely on bash or zsh behavior.

This force the command to be run with exec and prevent them
for staying alive after startup or restart.

Signed-off-by: Cedric BAIL <cedric.bail@free.fr>
This commit is contained in:
Dieter Roelants 2013-03-11 10:27:20 +09:00 committed by Cedric BAIL
parent 98602e6846
commit 5e5462a381
5 changed files with 8 additions and 2 deletions

View File

@ -51,3 +51,4 @@ David H. Bronke <whitelynx@gmail.com>
José Roberto de Souza <zehortigoza@profusion.mobi>
Lucas Jóia <lucasjoia@profusion.mobi>
Deon Thomas
Dieter Roelants <dieter.e@bsdusr.net>

View File

@ -1,3 +1,7 @@
2013-03-11 Dieter Roelants
* portability: Don't rely on bash or zsh behavior when starting enlightenment_init and tempget.
2013-03-01 Jérémy Zurcher
* mixer shows more channels when using alsa subsystem and correctly disable controls

1
NEWS
View File

@ -121,6 +121,7 @@ Improvements:
* EFM toolbar now has its own gadcon location
* DND canvas merged to compositor
* shelf gadcon can no longer resize smaller than 16x16, ensuring dnd success
* Don't rely on bash or zsh behavior when starting enlightenment_init and tempget.
Fixes:
* IBar menu didn't allow to configure different icon sources, show contents menu even on empty IBar.

View File

@ -68,7 +68,7 @@ e_init_show(void)
else ver = strdup("XvX");
snprintf(buf, sizeof(buf),
"%s/enlightenment/utils/enlightenment_init \'%s\' \'%i\' \'%s\' \'%s\'",
"exec %s/enlightenment/utils/enlightenment_init \'%s\' \'%i\' \'%s\' \'%s\'",
e_prefix_lib_get(), theme,
e_config->font_hinting, tit, ver);
printf("RUN INIT: %s\n", buf);

View File

@ -321,7 +321,7 @@ temperature_face_update_config(Config_Face *inst)
if (!inst->tempget_exe)
{
snprintf(buf, sizeof(buf),
"%s/%s/tempget %i \"%s\" %i",
"exec %s/%s/tempget %i \"%s\" %i",
e_module_dir_get(temperature_config->module), MODULE_ARCH,
inst->sensor_type,
(inst->sensor_name ? inst->sensor_name : "(null)"),