From a803e26dcdc6652b12d05f29bbd1b23c4b4239ed Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Thu, 22 Aug 2019 09:17:59 +0000 Subject: snapshot of project "lynx", label v2-9-0dev_2b --- PACKAGE/lynx.iss | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'PACKAGE') diff --git a/PACKAGE/lynx.iss b/PACKAGE/lynx.iss index 68d9b83c..6172363c 100644 --- a/PACKAGE/lynx.iss +++ b/PACKAGE/lynx.iss @@ -1,4 +1,4 @@ -; $LynxId: lynx.iss,v 1.32 2019/01/27 22:56:58 tom Exp $ +; $LynxId: lynx.iss,v 1.33 2019/08/22 00:27:18 tom Exp $ ; vile:ts=4 sw=4 notabinsert fk=8bit ; ; This is the BASE script for different flavors of the installer for Lynx. @@ -138,8 +138,6 @@ Name: "{app}\icon" #ifndef NoScreenDll #emit 'Source: "' + DllsSrcDir + '\' + ScreenDllName + '"; DestDir: "{app}"; DestName: ' + ScreenDllName + '; Flags: ignoreversion' #endif -#emit 'Source: "' + DllsSrcDir + '\' + ZlibDllName + '"; DestDir: "{app}"; DestName: ' + ZlibDllName + '; Flags: ignoreversion' -#emit 'Source: "' + DllsSrcDir + '\' + BzipDllName + '"; DestDir: "{app}"; DestName: ' + BzipDllName + '; Flags: ignoreversion' #emit 'Source: "' + DllsSrcDir + '\' + BzipExeName + '"; DestDir: "{app}"; DestName: ' + BzipExeName + '; Flags: ignoreversion' #emit 'Source: "' + DllsSrcDir + '\' + GzipExeName + '"; DestDir: "{app}"; DestName: ' + GzipExeName + '; Flags: ignoreversion' #emit 'Source: "' + DocsSrcDir + '\*.*"; DestDir: "{app}\doc"; Flags: ' @@ -442,11 +440,14 @@ end; procedure ReallyDelete(const fullPath: string); begin - if DeleteFile( fullPath ) then - Log( '...successful' ) - else + if FileExists( fullpath ) then begin - MsgBox('Failed to delete ' + fullPath, mbError, MB_OK); + if DeleteFile( fullPath ) then + Log( '...successful' ) + else + begin + MsgBox('Failed to delete ' + fullPath, mbError, MB_OK); + end; end; end; -- cgit 1.4.1-2-gfad0 type='hidden' name='h' value='hlt'/>
path: root/012transform.cc
blob: d3b4384ef463dcb2cce8f216641f070cb8a50d45 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14