diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2015-03-24 21:40:09 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2015-03-24 21:40:09 +0300 |
commit | 030eb1cecb5bca5a5999dee1fd3f37639ab79a2d (patch) | |
tree | 8e0e40aed47ff651f6ccf2ae6fe760ab6c4d5865 | |
parent | 036ccd8efa9ca16734b8baf4cc022eacb5d78576 (diff) | |
download | gunmake-030eb1cecb5bca5a5999dee1fd3f37639ab79a2d.tar.gz |
Ignore ? before the command in SunOS mode
-rw-r--r-- | job.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1190,6 +1190,8 @@ start_job_command (struct child *child) flags |= COMMANDS_RECURSE; else if (*p == '-') child->noerror = 1; + else if (sun_flag && (*p == '?')) /* ignored. */ + ; else if (!isblank ((unsigned char)*p)) break; ++p; |