Changeset 4934 for trunk/tools/install


Ignore:
Timestamp:
Jan 12, 2001, 3:49:38 PM (25 years ago)
Author:
bird
Message:

Added odincrt.dll to debug release (to make wgss50.dll happy).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/install/odin.cmd

    r4920 r4934  
    1 /* $Id: odin.cmd,v 1.26 2001-01-10 18:39:57 bird Exp $
     1/* $Id: odin.cmd,v 1.27 2001-01-12 14:49:38 bird Exp $
    22 *
    33 * Odin32 API WarpIn installation script generator.
     
    336336sMainDir = filespec('path', substr(sMainDir, 1, length(sMainDir) - 1));
    337337sMainDir = filespec('drive', sCurDir) || substr(sMainDir, 1, length(sMainDir) - 1);
    338 sDocDir = sMainDir||'\doc'
     338sDocDir = sMainDir||'\doc';
    339339sBinDir = sMainDir||'\bin';
    340340sDllDir = sBinDir||'\'||sDllDir;
     
    369369if (rc <> 0) then return rc;
    370370
    371 if (pos('DEBUG', translate(filespec('name', sDllDir))) > 0) then
     371if (pos('DEBUG', translate(filespec('name', sDllDir)))) then
    372372do
     373    iDbg = lastpos('DEBUG', translate(sDllDir));
     374    sRelDir = substr(sDllDir, 1, iDbg - 1)||'release'||substr(sDllDir, iDbg + 5);
     375    say sRelDir
     376    say sRelDir
     377    say sRelDir
     378    say sRelDir
     379    say sRelDir
     380    sWICCmd '2 -c'||sRelDir 'odincrt.dll odincrt.sym';
     381
    373382    sWICCmd '2 -c'||sDllDir '*.sym';
    374383    if (rc <> 0) then return rc;
Note: See TracChangeset for help on using the changeset viewer.