diff options
author | Internet Software Consortium, Inc <@isc.org> | 2007-09-07 14:16:15 -0600 |
---|---|---|
committer | LaMont Jones <lamont@debian.org> | 2007-09-07 14:16:15 -0600 |
commit | 93d1af61eb25219ad177616d593616f5265597bb (patch) | |
tree | 4d09151ac4c4ae6de41aba3da17a19f9cc8dcdf8 /win32utils | |
parent | 0d2bbd9fb5842156992e1c07bd94d676c9485147 (diff) | |
download | bind9-93d1af61eb25219ad177616d593616f5265597bb.tar.gz |
9.4.0b4
Diffstat (limited to 'win32utils')
-rw-r--r-- | win32utils/BuildPost.bat | 2 | ||||
-rw-r--r-- | win32utils/BuildSetup.bat | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/win32utils/BuildPost.bat b/win32utils/BuildPost.bat index ae6b31b4..4d30fc7e 100644 --- a/win32utils/BuildPost.bat +++ b/win32utils/BuildPost.bat @@ -20,6 +20,8 @@ rem This script does the final stages if BINDBuild.dsw is used. echo Copying named-checkzone.exe to named-compilezone.exe
copy /Y ..\Build\Release\named-checkzone.exe ..\Build\Release\named-compilezone.exe
+if exist ..\Build\Debug\named-checkzone.exe copy /Y ..\Build\Debug\named-checkzone.exe ..\Build\Debug\named-compilezone.exe
+if exist ..\Build\Debug\named-checkzone.ilk copy /Y ..\Build\Debug\named-checkzone.ilk ..\Build\Debug\named-compilezone.ilk
echo Done.
diff --git a/win32utils/BuildSetup.bat b/win32utils/BuildSetup.bat index 0c4c51b7..2ad2070b 100644 --- a/win32utils/BuildSetup.bat +++ b/win32utils/BuildSetup.bat @@ -39,6 +39,7 @@ rem Make sure that the Build directories are there. if NOT Exist ..\Build mkdir ..\Build
if NOT Exist ..\Build\Release mkdir ..\Build\Release
+if NOT Exist ..\Build\Debug mkdir ..\Build\Debug
echo Copying the ARM and the Installation Notes.
@@ -54,6 +55,6 @@ copy ..\FAQ ..\Build\Release echo Copying the OpenSSL DLL.
copy ..\..\openssl-0.9.8d\out32dll\libeay32.dll ..\Build\Release\
-
+copy ..\..\openssl-0.9.8d\out32dll\libeay32.dll ..\Build\Debug\
rem Done
|