diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-06 01:20:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-06 01:20:12 +0000 |
commit | 1d76f439da81d3a05f0e0fdde3f81ec56fb20836 (patch) | |
tree | f3e2e2185d092f87843fe4bbc9d1098185a5bdbd /util-linux | |
parent | cc24419e98853aede7c652edb3c1c79a9865bdda (diff) | |
download | busybox-1d76f439da81d3a05f0e0fdde3f81ec56fb20836.tar.gz |
EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/setarch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/setarch.c b/util-linux/setarch.c index 8f4e308d4..a7a45ec4d 100644 --- a/util-linux/setarch.c +++ b/util-linux/setarch.c @@ -46,7 +46,7 @@ retry: if (personality(pers) >= 0) { /* Try to execute the program */ - execvp(argv[0], argv); + BB_EXECVP(argv[0], argv); } bb_perror_msg_and_die("%s", argv[0]); |