diff options
author | Eli Zaretskii <eliz@gnu.org> | 1998-10-20 14:16:07 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 1998-10-20 14:16:07 +0000 |
commit | 32372ef84c272010ae644eb5f6e63ac5bae23b18 (patch) | |
tree | 4863410075262d30b6c56fcd8a4513f6ee79d675 /msdos | |
parent | bffa4d92e152cbe47eab2f5f9216bb267d6790f8 (diff) | |
download | emacs-32372ef84c272010ae644eb5f6e63ac5bae23b18.tar.gz |
Forcibly set SHELL and MAKESHELL to force Make to use
COMMAND.COM as the shell.
Diffstat (limited to 'msdos')
-rw-r--r-- | msdos/mainmake.v2 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/msdos/mainmake.v2 b/msdos/mainmake.v2 index 5a81f3bbc25..0f137cd12a3 100644 --- a/msdos/mainmake.v2 +++ b/msdos/mainmake.v2 @@ -29,6 +29,12 @@ # make extraclean # Still more severe - delete backup and autosave files, too. +# This gork is required for those who use a Unix-style shell, and +# have SHELL in the environment pointing to it. Here we force +# Make to use COMMAND.COM instead. This Makefile won't work otherwise. +override SHELL=/dos/command +override MAKESHELL=/dos/command + # Generate a full pathname of the top-level installation directory top_srcdir := $(subst \,/,$(shell cd)) |