Changeset 410


Ignore:
Timestamp:
Dec 10, 2009, 9:45:42 PM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

configure.cmd: Don't generate Makefile from qmake.pro too early: it won't be able to properly resolve Qt library names if their .prls are absent.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.cmd

    r406 r410  
    17461746        call Done 2
    17471747
    1748     if (pos("qmake", G.CFG_BUILD_PARTS) > 0) then do
    1749         /* generate the qmake makefile as well to overwrite the bootstrapped Makefile */
    1750         str = G.OutPath"\bin\qmake.exe" G.RelPath"\qmake\qmake.pro -o" G.OutPath"\qmake\Makefile"
    1751         say str
    1752         address "cmd" str
    1753         make_rc = rc
    1754         /* exit on failure */
    1755         if (make_rc \= 0)  then
    1756             call Done 2
    1757     end
     1748    if (pos("qmake", G.CFG_BUILD_PARTS) > 0) then
     1749        /* we need to delete the bootstrapped Makefile so that a proper one will
     1750         * be generated from qmake.pro when it's time for it */
     1751        call DeleteFile G.OutPath"\qmake\Makefile"
    17581752
    17591753    /* generate the immediate child makefiles, otherwise 'make release|debug'
Note: See TracChangeset for help on using the changeset viewer.