* ext.c (exec_extension): Use "#! /bin/sh".

This commit is contained in:
Andrew V. Samoilov 2002-02-21 14:37:51 +00:00
parent f04c521675
commit c13770201f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-02-21 Andrew V. Samoilov <kai@cmail.ru>
* ext.c (exec_extension): Use "#! /bin/sh".
2002-02-20 Pavel Roskin <proski@gnu.org>
* background.c (background_attention): Cast pointer to long

View File

@ -143,7 +143,7 @@ exec_extension (const char *filename, const char *data, char **drops, int *move_
return;
}
cmd_file = fdopen (cmd_file_fd, "w");
fputs ("#!/bin/sh\n", cmd_file);
fputs ("#! /bin/sh\n", cmd_file);
prompt [0] = 0;
for (;*data && *data != '\n'; data++){