[ekiga/gnome-2-26] [windows] Really fix debug file name



commit d4002b2a8de2aefe3dc00249864c93e174c4d17f
Author: Eugen Dedu <Eugen Dedu pu-pm univ-fcomte fr>
Date:   Tue May 11 21:28:58 2010 +0200

    [windows] Really fix debug file name

 win32/nsisinstaller/ekiga.nsi |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/win32/nsisinstaller/ekiga.nsi b/win32/nsisinstaller/ekiga.nsi
index a6aec8c..7a50b56 100644
--- a/win32/nsisinstaller/ekiga.nsi
+++ b/win32/nsisinstaller/ekiga.nsi
@@ -17,17 +17,17 @@ var ALREADY_INSTALLED
 Name $name
 SetCompressor /SOLID lzma
 !ifdef WITH_GTK
-!ifdef DEBUG
-OutFile "${TARGET_DIR}/ekiga-setup-${EKIGA_VERSION}-debug.exe"
+  !if ${DEBUG}
+    OutFile "${TARGET_DIR}/ekiga-setup-${EKIGA_VERSION}-debug.exe"
+  !else
+    OutFile "${TARGET_DIR}/ekiga-setup-${EKIGA_VERSION}.exe"
+  !endif
 !else
-OutFile "${TARGET_DIR}/ekiga-setup-${EKIGA_VERSION}.exe"
-!endif
-!else
-!ifdef DEBUG
-OutFile "${TARGET_DIR}/ekiga-setup-${EKIGA_VERSION}-nogtk-debug.exe"
-!else
-OutFile "${TARGET_DIR}/ekiga-setup-${EKIGA_VERSION}-nogtk.exe"
-!endif
+  !if ${DEBUG}
+    OutFile "${TARGET_DIR}/ekiga-setup-${EKIGA_VERSION}-nogtk-debug.exe"
+  !else
+    OutFile "${TARGET_DIR}/ekiga-setup-${EKIGA_VERSION}-nogtk.exe"
+  !endif
 !endif
 
 ; ===========================



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]