diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-04-27 19:12:01 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-04-27 19:12:01 +0300 |
commit | e56aad40611fb5c014487c242e7393c84135d88f (patch) | |
tree | 29b5e0c7447404b5d56dc080e895eb1661a96c37 /read.c | |
parent | 049f8e88fc72d17e94d5429186ea4b93398a8c5e (diff) | |
download | gunmake-e56aad40611fb5c014487c242e7393c84135d88f.tar.gz |
Support .ONESHELL on MS-Windows, for default Windows shells.
read.c (record_files): Pay attention to .ONESHELL in MS-Windows.
job.c (construct_command_argv_internal): Support .ONESHELL on
MS-Windows, when the shell is not a Unixy shell.
Diffstat (limited to 'read.c')
-rw-r--r-- | read.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2048,7 +2048,7 @@ record_files (struct nameseq *filenames, const char *pattern, } else if (streq (name, ".SECONDEXPANSION")) second_expansion = 1; -#if !defined(WINDOWS32) && !defined (__MSDOS__) && !defined (__EMX__) +#if !defined (__MSDOS__) && !defined (__EMX__) else if (streq (name, ".ONESHELL")) one_shell = 1; #endif |