summaryrefslogtreecommitdiff
path: root/job.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2005-08-25 04:40:10 +0000
committerPaul Smith <psmith@gnu.org>2005-08-25 04:40:10 +0000
commit6636dc1d5c41840afd58e402f7b6ea6ef25de943 (patch)
treec6fa7adfd60d09ce09eb002b308ef05627a62b40 /job.c
parentbf58e35105696abf9f68f8e1536a3bbfa73ad60e (diff)
downloadgunmake-6636dc1d5c41840afd58e402f7b6ea6ef25de943.tar.gz
If we're on a DOS/W32/OS2 system and we're not using a unixy shell, don't
follow POSIX backslash/newline conventions. Use a different method for testing the SHELL variable, which hopefully will work better on non-UNIX systems.
Diffstat (limited to 'job.c')
-rw-r--r--job.c32
1 files changed, 25 insertions, 7 deletions
diff --git a/job.c b/job.c
index 1f49175..18d17e3 100644
--- a/job.c
+++ b/job.c
@@ -2408,8 +2408,15 @@ construct_command_argv_internal (char *line, char **restp, char *shell,
{
/* Backslash-newline is handled differently depending on what
kind of string we're in: inside single-quoted strings you
- keep them; in double-quoted strings they disappear. */
- if (instring == '"')
+ keep them; in double-quoted strings they disappear.
+ For DOS/Windows/OS2, if we don't have a POSIX shell,
+ we keep the pre-POSIX behavior of removing the
+ backslash-newline. */
+ if (instring == '"'
+#if defined (__MSDOS__) || defined (__EMX__) || defined (WINDOWS32)
+ || !unixy_shell
+#endif
+ )
++p;
else
{
@@ -2693,12 +2700,23 @@ construct_command_argv_internal (char *line, char **restp, char *shell,
}
else if (*p == '\\' && p[1] == '\n')
{
- /* POSIX says we keep the backslash-newline, but throw out the
- next char if it's a TAB. */
- *(ap++) = '\\';
- *(ap++) = *(p++);
- *(ap++) = *p;
+ /* POSIX says we keep the backslash-newline, but throw out
+ the next char if it's a TAB. If we don't have a POSIX
+ shell on DOS/Windows/OS2, mimic the pre-POSIX behavior
+ and remove the backslash/newline. */
+#if defined (__MSDOS__) || defined (__EMX__) || defined (WINDOWS32)
+# define PRESERVE_BSNL unixy_shell
+#else
+# define PRESERVE_BSNL 1
+#endif
+ if (PRESERVE_BSNL)
+ {
+ *(ap++) = '\\';
+ *(ap++) = '\\';
+ *(ap++) = '\n';
+ }
+ ++p;
if (p[1] == '\t')
++p;