mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -04:00
hibyos: "run script" now invokes "/bin/sh" instead of "sh"
Change-Id: I409b8deaf7150abb0c00204e596bf8906b3fdc46
This commit is contained in:
parent
310e380056
commit
fb2f56f8a6
1 changed files with 1 additions and 1 deletions
|
@ -429,7 +429,7 @@ void run_file(const char *name)
|
|||
pid_t pid = fork();
|
||||
if(pid == 0)
|
||||
{
|
||||
execlp("sh", "sh", buf, NULL);
|
||||
execlp("/bin/sh", "sh", buf, NULL);
|
||||
_exit(42);
|
||||
}
|
||||
int status;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue