From 1e3c5c712903f9b2201d6b3f60187b5bf72beea4 Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Tue, 19 Feb 2008 18:28:59 +0000 Subject: [PATCH] pull up r20211 from trunk r20211@cathode-dark-space: jaltman | 2008-01-23 17:10:56 -0500 ticket: new subject: Windows: avoid use of cygwin mkdir and rmdir commands tags: pullup Microsoft's nmake versions 8.x and 9.x prefer executables over internal shell commands. This is a change from previous versions. Cygwin's mkdir and rmdir commands do not have the same semantics as the cmd.exe shell versions. Change the definitions of MKDIR and RMDIR to use 'md' and 'rd' in order to avoid the use of the cygwin versions. ticket: 5875 target_version: 1.6.4 version_fixed: 1.6.4 component: windows git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-6@20232 dc483132-0cff-0310-8789-dd5450dbe970 --- src/windows/identity/config/Makefile.w2k | 4 ++-- src/windows/identity/config/Makefile.w32 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/windows/identity/config/Makefile.w2k b/src/windows/identity/config/Makefile.w2k index 14c707d7e..2edc113f4 100644 --- a/src/windows/identity/config/Makefile.w2k +++ b/src/windows/identity/config/Makefile.w2k @@ -160,8 +160,8 @@ _WIN32_WINNT=0x0500 CD=cd RM=del /q -MKDIR=mkdir -RMDIR=rmdir +MKDIR=md +RMDIR=rd ECHO=echo MAKECMD=nmake /nologo CP=copy /y diff --git a/src/windows/identity/config/Makefile.w32 b/src/windows/identity/config/Makefile.w32 index 3b61c6638..eda497065 100644 --- a/src/windows/identity/config/Makefile.w32 +++ b/src/windows/identity/config/Makefile.w32 @@ -173,8 +173,8 @@ NODEBUG=1 CD=cd RM=del /q -MKDIR=mkdir -RMDIR=rmdir +MKDIR=md +RMDIR=rd ECHO=echo MAKECMD=nmake /nologo CP=copy /y -- 2.26.2