Ignore:
Timestamp:
Feb 5, 2010, 1:30:59 AM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

qmake: Fixed: Missing path separator in strip and delete commands' arguments of install/uninstall targets [vendor bug].

File:
1 edited

Legend:

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

    r530 r531  
    12301230           project->values((*it) + ".CONFIG").indexOf("dummy_install") == -1) {
    12311231            dst = fileFixify(unescapeFilePath(project->values(pvar).first()), FileFixifyAbsolute, false);
    1232             if(dst.right(1) != Option::dir_sep)
    1233                 dst += Option::dir_sep;
    12341232        }
    12351233        dst = escapeFilePath(dst);
     1234        if(dst.right(Option::dir_sep.length()) != Option::dir_sep)
     1235            dst += Option::dir_sep;
    12361236
    12371237        QStringList tmp, uninst = project->values((*it) + ".uninstall");
Note: See TracChangeset for help on using the changeset viewer.