summaryrefslogtreecommitdiffstats
path: root/win/rmd.bat
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-01-23 14:46:22 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-01-23 14:46:22 (GMT)
commite0911ec4c26de1730f2f00b8d32a5e1980211dea (patch)
tree8f06b01a46f98cbd69ef3cfefa941daa32481766 /win/rmd.bat
parentc3894d8f32c0386305c5ead33eff1e8fceb377f2 (diff)
downloadtk-e0911ec4c26de1730f2f00b8d32a5e1980211dea.zip
tk-e0911ec4c26de1730f2f00b8d32a5e1980211dea.tar.gz
tk-e0911ec4c26de1730f2f00b8d32a5e1980211dea.tar.bz2
If Tk is compiled with -DTK_NO_DEPRECATED=1, remove some deprecated code (pack subcommands) and other stuff which is not used any more.
And fix a few typos. Remove rmd.bat and rmd.bat, which are also not used any more.
Diffstat (limited to 'win/rmd.bat')
-rw-r--r--win/rmd.bat20
1 files changed, 0 insertions, 20 deletions
diff --git a/win/rmd.bat b/win/rmd.bat
deleted file mode 100644
index 820b76f..0000000
--- a/win/rmd.bat
+++ /dev/null
@@ -1,20 +0,0 @@
-@echo off
-
-if not exist %1\nul goto end
-
-echo Removing directory %1
-
-if "%OS%" == "Windows_NT" goto winnt
-
-deltree /y %1
-if errorlevel 1 goto end
-goto success
-
-:winnt
-rmdir /s /q %1
-if errorlevel 1 goto end
-
-:success
-echo Deleted directory %1
-
-:end