summaryrefslogtreecommitdiff
path: root/win
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-09-23 17:40:43 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-09-23 17:40:43 +0000
commit66bc6ec1200e33c8994d237adc549026443f5ad7 (patch)
treeb3b164d0701cb4a5c95c3d6dbe0cd47ca930af40 /win
parentfbd5ea4fd697f36f32b93048c1c635d59a4c0e29 (diff)
Fix configure to make release directories during build
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8055 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'win')
-rw-r--r--win/configure.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/configure.cpp b/win/configure.cpp
index a66e26118..8346773bb 100644
--- a/win/configure.cpp
+++ b/win/configure.cpp
@@ -435,7 +435,7 @@ void WriteCompileCommands()
#endif
#endif
- fprintf(f, "makedir:\n if not exist debug mkdir debug\n\n");
+ fprintf(f, "makedir:\n if not exist debug mkdir debug\n if not exist release mkdir release\n\n");
// dump modules.. again the second and last time :)
for(int i = 0; i < command_count; ++i)
@@ -500,7 +500,7 @@ void WriteCompileModules()
#endif
#endif
- fprintf(f, "makedir:\n if not exist debug mkdir debug\n\n");
+ fprintf(f, "makedir:\n if not exist debug mkdir debug\n if not exist release mkdir release\n\n");
// dump modules.. again the second and last time :)
for(int i = 0; i < module_count; ++i)