[build] Set up test environment in a way that supports fish and others

Use env rather than implicit variable setting in command line
This commit is contained in:
Andy Williams 2015-12-11 13:08:52 +00:00
parent 0ad0376547
commit e925d9fb42
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ EAPI void
edi_builder_test(void)
{
chdir(edi_project_get());
ecore_exe_pipe_run("CK_VERBOSITY=verbose make check", ECORE_EXE_PIPE_READ_LINE_BUFFERED | ECORE_EXE_PIPE_READ |
ecore_exe_pipe_run("env CK_VERBOSITY=verbose make check", ECORE_EXE_PIPE_READ_LINE_BUFFERED | ECORE_EXE_PIPE_READ |
ECORE_EXE_PIPE_ERROR_LINE_BUFFERED | ECORE_EXE_PIPE_ERROR, NULL);
}