Changeset 959


Ignore:
Timestamp:
Aug 10, 2011, 11:28:54 PM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

OS/2: configure.cmd: Proper debug|release order in QT_CONFIG.

This is to match the behavior of other platforms (taken from configure),
just in case.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.cmd

    r954 r959  
    17911791    if (G.CFG_DEBUG == "yes") then do
    17921792        G.QTCONFIG_CONFIG = Join(G.QTCONFIG_CONFIG, "debug")
    1793         G.QT_CONFIG = Join(G.QT_CONFIG, "debug")
    17941793        if (G.CFG_DEBUG_RELEASE == "yes") then do
    17951794            G.QTCONFIG_CONFIG = Join(G.QTCONFIG_CONFIG, "debug_and_release")
     
    17971796            G.QT_CONFIG = Join(G.QT_CONFIG, "release")
    17981797        end
     1798        G.QT_CONFIG = Join(G.QT_CONFIG, "debug")
    17991799    end
    18001800    else if (G.CFG_DEBUG == "no") then do
    18011801        G.QTCONFIG_CONFIG = Join(G.QTCONFIG_CONFIG, "release")
    1802         G.QT_CONFIG = Join(G.QT_CONFIG, "release")
    18031802        if (G.CFG_DEBUG_RELEASE == "yes") then do
    18041803            G.QTCONFIG_CONFIG = Join(G.QTCONFIG_CONFIG, "debug_and_release")
     
    18061805            G.QT_CONFIG = Join(G.QT_CONFIG, "debug")
    18071806        end
     1807        G.QT_CONFIG = Join(G.QT_CONFIG, "release")
    18081808    end
    18091809
Note: See TracChangeset for help on using the changeset viewer.