Ignore:
Timestamp:
Jun 12, 2009, 1:32:11 PM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

qmake: More OS/2-specific fixes. Enabled GNUMakefileGenerator (turned on by MAKEFILE_GENERATOR=GNUMAKE).

File:
1 edited

Legend:

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

    r27 r29  
    100100        ret += dir;
    101101    ret += " ";
    102     if(isWindowsShell())
     102    if(isDosLikeShell())
    103103        ret += "$(MKDIR)";
    104104    else
     
    125125    }
    126126    bool ret = true;
    127 #ifdef Q_OS_WIN
     127#if defined(Q_OS_WIN) || defined(Q_OS_OS2)
    128128    bool driveExists = true;
    129129    if(!QDir::isRelativePath(path)) {
     
    11911191{
    11921192    QString rm_dir_contents("-$(DEL_FILE)");
    1193     if (!isWindowsShell()) //ick
     1193    if (!isDosLikeShell()) //ick
    11941194        rm_dir_contents = "-$(DEL_FILE) -r";
    11951195
     
    13421342            for(QStringList::ConstIterator pit = dirs.begin(); pit != dirs.end(); ++pit) {
    13431343                QString tmp_dst = fileFixify((*pit), FileFixifyAbsolute, false);
    1344                 if (!isWindowsShell() && tmp_dst.right(1) != Option::dir_sep)
     1344                if (!isDosLikeShell() && tmp_dst.right(1) != Option::dir_sep)
    13451345                    tmp_dst += Option::dir_sep;
    13461346                t << mkdir_p_asstring(filePrefixRoot(root, tmp_dst)) << "\n\t";
Note: See TracChangeset for help on using the changeset viewer.