Changeset 847 for trunk/qmake/generators


Ignore:
Timestamp:
May 6, 2011, 7:26:50 PM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

qmake: Fixed the OS/2 build and the GNUMAKE generator.

Location:
trunk/qmake/generators
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/qmake/generators/makefile.cpp

    r846 r847  
    18841884                Option::target_mode == Option::TARG_OS2_MODE ?
    18851885                    QString(" >nul 2>&1") : // reduce noise
    1886                 isForSymbian() ?
    1887                     QString(" 2> NUL") :
    18881886                    QString::null;
    18891887
  • trunk/qmake/generators/metamakefile.cpp

    r846 r847  
    557557#endif
    558558        *target_mode = Option::TARG_SYMBIAN_MODE;
     559    } else if (gen == "GNUMAKE") {
     560        *host_mode = Option::HOST_OS2_MODE;
     561        *target_mode = Option::TARG_OS2_MODE;
    559562    } else {
    560563        fprintf(stderr, "Unknown generator specified: %s\n", gen.toLatin1().constData());
  • trunk/qmake/generators/symbian/symmake_abld.cpp

    r846 r847  
    320320                    dirsToClean << fixedValue;
    321321                    t << "\t-@ " << dirExists << " \""  << fixedValue << "\" "
    322                       << (isWindowsShell() ? "" : "|| ")
     322                      << (isDosLikeShell() ? "" : "|| ")
    323323                      << mkdir << " \"" << fixedValue << "\"" << endl;
    324324                }
Note: See TracChangeset for help on using the changeset viewer.