aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii1998-10-20 14:16:07 +0000
committerEli Zaretskii1998-10-20 14:16:07 +0000
commit32372ef84c272010ae644eb5f6e63ac5bae23b18 (patch)
tree4863410075262d30b6c56fcd8a4513f6ee79d675
parentbffa4d92e152cbe47eab2f5f9216bb267d6790f8 (diff)
downloademacs-32372ef84c272010ae644eb5f6e63ac5bae23b18.tar.gz
emacs-32372ef84c272010ae644eb5f6e63ac5bae23b18.zip
Forcibly set SHELL and MAKESHELL to force Make to use
COMMAND.COM as the shell.
-rw-r--r--msdos/mainmake.v26
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 @@
29# make extraclean 29# make extraclean
30# Still more severe - delete backup and autosave files, too. 30# Still more severe - delete backup and autosave files, too.
31 31
32# This gork is required for those who use a Unix-style shell, and
33# have SHELL in the environment pointing to it. Here we force
34# Make to use COMMAND.COM instead. This Makefile won't work otherwise.
35override SHELL=/dos/command
36override MAKESHELL=/dos/command
37
32# Generate a full pathname of the top-level installation directory 38# Generate a full pathname of the top-level installation directory
33top_srcdir := $(subst \,/,$(shell cd)) 39top_srcdir := $(subst \,/,$(shell cd))
34 40