EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>
diff --git a/coreutils/chroot.c b/coreutils/chroot.c
index 16c743f..fcd70f2 100644
--- a/coreutils/chroot.c
+++ b/coreutils/chroot.c
@@ -33,6 +33,6 @@
 		argv[1] = (char *) "-i";
 	}
 
-	execvp(*argv, argv);
+	BB_EXECVP(*argv, argv);
 	bb_perror_msg_and_die("cannot execute %s", *argv);
 }