Patch from Lars Kellogg-Stedman:

Busybox vi is installed in /bin/vi, but crontab was looking for
    /usr/bin/vi.  This patch makes crontab look for /bin/vi instead.
This commit is contained in:
Eric Andersen 2003-07-14 19:14:26 +00:00
parent 96916b7f41
commit 9edcabdc34

View File

@ -37,7 +37,7 @@
#define CRONUPDATE "cron.update"
#endif
#ifndef PATH_VI
#define PATH_VI "/usr/bin/vi" /* location of vi */
#define PATH_VI "/bin/vi" /* location of vi */
#endif
#include "busybox.h"