Windows: avoid use of cygwin mkdir and rmdir commands
authorJeffrey Altman <jaltman@secure-endpoints.com>
Wed, 23 Jan 2008 22:10:56 +0000 (22:10 +0000)
committerJeffrey Altman <jaltman@secure-endpoints.com>
Wed, 23 Jan 2008 22:10:56 +0000 (22:10 +0000)
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: new
tags: pullup

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20211 dc483132-0cff-0310-8789-dd5450dbe970

src/windows/identity/config/Makefile.w2k
src/windows/identity/config/Makefile.w32

index 14c707d7e1123791fa5f6770d31335b42df2d4b9..2edc113f4b05b9e3b47ffd268789439eb0eebaea 100644 (file)
@@ -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
index 3b61c66384b0430777860fcb97ad307b0d59c000..eda4970650750ca05fadae40c80ba5c4bca78dd8 100644 (file)
@@ -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