From 1d76f439da81d3a05f0e0fdde3f81ec56fb20836 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 6 Feb 2007 01:20:12 +0000 Subject: EXEC_PREFER_APPLETS support by Gabriel L. Somlo --- coreutils/install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/install.c') diff --git a/coreutils/install.c b/coreutils/install.c index dd73fb693..c105addc5 100644 --- a/coreutils/install.c +++ b/coreutils/install.c @@ -126,7 +126,7 @@ int install_main(int argc, char **argv) ret = EXIT_FAILURE; } if (flags & OPT_STRIP) { - if (execlp("strip", "strip", dest, NULL) == -1) { + if (BB_EXECLP("strip", "strip", dest, NULL) == -1) { bb_perror_msg("strip"); ret = EXIT_FAILURE; } -- cgit v1.2.3-55-g6feb