comparison msdos/mainmake.v2 @ 24908:075da7e5be80

(SHELL, MAKESHELL): Don't use /dos/command, it can invoke an incompatible version of COMAMND.COM.
author Eli Zaretskii <eliz@gnu.org>
date Thu, 01 Jul 1999 13:28:10 +0000
parents 8db408246555
children b2c3baf84d16
comparison
equal deleted inserted replaced
24907:3a8dabda4664 24908:075da7e5be80
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 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 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. 34 # Make to use COMMAND.COM instead. This Makefile won't work otherwise.
35 SHELL=/dos/command 35 # (The /xyzzy directory is used to minimize the chance that someone
36 MAKESHELL=/dos/command 36 # actually has such a directory with an incompatible command.com. We
37 # used to have /dos there, but some Windows installations have an old
38 # version of DOS stashed in that directory, and command.com from there
39 # won't run on Windows, complaining about "Incorrect DOS version".
40 # Make will look up PATH for the shell executable, so the directory name
41 # is not important.)
42 SHELL=/xyzzy/command
43 MAKESHELL=/xyzzy/command
37 44
38 # Generate a full pathname of the top-level installation directory 45 # Generate a full pathname of the top-level installation directory
39 top_srcdir := $(subst \,/,$(shell cd)) 46 top_srcdir := $(subst \,/,$(shell cd))
40 47
41 # Find out which version of Emacs this is. 48 # Find out which version of Emacs this is.