summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2015-08-11 19:43:34 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2015-08-11 19:43:34 +0000
commit30b7d1b936b048f3ab9f1c35832891f407cdb6cf (patch)
tree10a65136401ebcb563dfc6079f6374a222d67639 /src
parent1433c6b6cc52822168df6b824eefe0670671026c (diff)
downloadexecline-30b7d1b936b048f3ab9f1c35832891f407cdb6cf.tar.xz
- typo fix in configure
- do not depend on /bin/true
Diffstat (limited to 'src')
-rw-r--r--src/libexecline/el_spawn0.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libexecline/el_spawn0.c b/src/libexecline/el_spawn0.c
index 4b7f50f..3e61ae1 100644
--- a/src/libexecline/el_spawn0.c
+++ b/src/libexecline/el_spawn0.c
@@ -2,13 +2,14 @@
#include <sys/types.h>
#include <skalibs/djbunix.h>
+#include <execline/config.h>
#include <execline/execline.h>
pid_t el_spawn0 (char const *prog, char const *const *argv, char const *const *envp)
{
if (!argv[0])
{
- static char const *const newargv[2] = { "/bin/true", 0 } ;
+ static char const *const newargv[3] = { EXECLINE_BINPREFIX "exit", "0", 0 } ;
return child_spawn0(newargv[0], newargv, 0) ;
}
else return child_spawn0(prog, argv, envp) ;