summaryrefslogtreecommitdiffstats
path: root/win/mkd.bat
diff options
context:
space:
mode:
authordavygrvy <davygrvy>2001-11-13 02:46:23 (GMT)
committerdavygrvy <davygrvy>2001-11-13 02:46:23 (GMT)
commit4d34483032bd741ce8176da8741a9043f108c557 (patch)
treeb2decec62d7ea77624953201fe82badde9f0f4d3 /win/mkd.bat
parent43c95b5b9d04b14721d663d07c8183b08fd27ac3 (diff)
downloadtk-4d34483032bd741ce8176da8741a9043f108c557.zip
tk-4d34483032bd741ce8176da8741a9043f108c557.tar.gz
tk-4d34483032bd741ce8176da8741a9043f108c557.tar.bz2
* win/mkd.bat:
* win/rmd.bat: Removed -kb CVS attribute and added changes from Llyod Lim for better stability. [Patch #456761] * win/rules.vc(new): * win/buildall.vc.bat(new): * win/makefile.vc: large rewrite following Tcl's makefile.vc as a guide and Patch #456761. Appears BugFree(tm).
Diffstat (limited to 'win/mkd.bat')
-rw-r--r--win/mkd.bat35
1 files changed, 13 insertions, 22 deletions
diff --git a/win/mkd.bat b/win/mkd.bat
index f9f3eaf..7d86b13 100644
--- a/win/mkd.bat
+++ b/win/mkd.bat
@@ -1,22 +1,13 @@
-@echo off
-rem RCS: @(#) $Id: mkd.bat,v 1.4 2001/09/08 22:34:42 mdejong Exp $
-
-if exist %1\tag.txt goto end
-
-if "%OS%" == "Windows_NT" goto winnt
-
-md %1
-if errorlevel 1 goto end
-
-goto success
-
-:winnt
-md %1
-if errorlevel 1 goto end
-
-:success
-echo TAG >%1\tag.txt
-echo created directory %1
-
-:end
-
+@echo off
+rem RCS: @(#) $Id: mkd.bat,v 1.5 2001/11/13 02:46:23 davygrvy Exp $
+
+if exist %1\nul goto end
+
+md %1
+if errorlevel 1 goto end
+
+echo Created directory %1
+
+:end
+
+