mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2025-02-07 13:03:08 +00:00
Support "move" as internal shell command on Windows with cmd.exe.
job.c (construct_command_argv_internal) <sh_cmds_dos> [WINDOWS32]: Add "move". Fixes Savannah bug #30714.
This commit is contained in:
parent
943c06de47
commit
cece7ad61f
2 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
|||
2013-05-18 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* job.c (construct_command_argv_internal) <sh_cmds_dos>
|
||||
[WINDOWS32]: Add "move". Fixes Savannah bug #30714.
|
||||
|
||||
* guile.c: Move inclusion of makeint.h before gnumake.h. This
|
||||
order must be observed when building Make, because gnumake.h must
|
||||
be included with GMK_BUILDING_MAKE defined, which makeint.h
|
||||
|
|
4
job.c
4
job.c
|
@ -2849,8 +2849,8 @@ construct_command_argv_internal (char *line, char **restp, char *shell,
|
|||
"chdir", "cls", "color", "copy", "ctty",
|
||||
"date", "del", "dir", "echo", "echo.",
|
||||
"endlocal", "erase", "exit", "for", "ftype",
|
||||
"goto", "if", "if", "md", "mkdir", "path",
|
||||
"pause", "prompt", "rd", "rem", "ren",
|
||||
"goto", "if", "if", "md", "mkdir", "move",
|
||||
"path", "pause", "prompt", "rd", "rem", "ren",
|
||||
"rename", "rmdir", "set", "setlocal",
|
||||
"shift", "time", "title", "type", "ver",
|
||||
"verify", "vol", ":", 0 };
|
||||
|
|
Loading…
Reference in a new issue