Ignore:
Timestamp:
Jun 25, 2009, 9:42:27 PM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

qmake: Fixed copy-paste typo in subdirs rule generation that blocked generation of Makefiles from .pro files in subdirs from the parent Makefile [vendor bug]. Also use escapeFilePath() in these rules since on some platforms (like OS/2) trailing slashes are not accepted in 'cd' and 'mkdir' commands.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/qmake/generators/os2/gnumake.cpp

    r50 r52  
    7878    } else {
    7979        ret.replace(QRegExp("\""), "");
     80        ret.replace(QRegExp("[\\\\/]$"), "");
    8081        if (ret.contains(QRegExp("[ +&;%]")))
    8182            ret = quote + ret + quote;
Note: See TracChangeset for help on using the changeset viewer.