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).

Location:
trunk/qmake/generators/win32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/qmake/generators/win32/mingw_make.cpp

    r2 r29  
    5858}
    5959
    60 bool MingwMakefileGenerator::isWindowsShell() const
     60bool MingwMakefileGenerator::isDosLikeShell() const
    6161{
    6262#ifdef Q_OS_WIN
    6363    return Option::shellPath.isEmpty();
    6464#else
    65     return Win32MakefileGenerator::isWindowsShell();
     65    return Win32MakefileGenerator::isDosLikeShell();
    6666#endif
    6767}
  • trunk/qmake/generators/win32/mingw_make.h

    r2 r29  
    5656    QString getLibTarget();
    5757private:
    58     bool isWindowsShell() const;
     58    bool isDosLikeShell() const;
    5959    void writeMingwParts(QTextStream &);
    6060    void writeIncPart(QTextStream &t);
Note: See TracChangeset for help on using the changeset viewer.