From 30b7d1b936b048f3ab9f1c35832891f407cdb6cf Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 11 Aug 2015 19:43:34 +0000 Subject: - typo fix in configure - do not depend on /bin/true --- configure | 2 +- src/libexecline/el_spawn0.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 4710a95..6869d89 100755 --- a/configure +++ b/configure @@ -357,7 +357,7 @@ LDFLAGS := $LDFLAGS_AUTO LDFLAGS_NOSHARED := $LDFLAGS_NOSHARED CROSS_COMPILE := $cross -vpath lib%a$vpaths +vpath lib%.a$vpaths EOF if $allstatic ; then echo ".LIBPATTERNS := lib%.a" 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 #include +#include #include 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) ; -- cgit v1.2.3