Ignore:
Timestamp:
Aug 3, 2010, 12:07:42 AM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

qmake: Fixed r769 typos.

File:
1 edited

Legend:

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

    r769 r773  
    13151315                    QString cmd;
    13161316                    if (installConfigValues.contains("directory")) {
    1317                         cmd = QLatin1String(inst_prefix + "$(INSTALL_DIR)");
     1317                        cmd = "$(INSTALL_DIR)");
    13181318                        if (!dst_file.endsWith(Option::dir_sep))
    13191319                            dst_file += Option::dir_sep;
    13201320                        dst_file += fi.fileName();
    13211321                    } else if (installConfigValues.contains("executable")) {
    1322                         cmd = QLatin1String(inst_prefix + "$(INSTALL_PROGRAM)");
     1322                        cmd = "$(INSTALL_PROGRAM)");
    13231323                    } else if (installConfigValues.contains("data")) {
    1324                         cmd = QLatin1String(inst_prefix + "$(INSTALL_FILE)");
     1324                        cmd = "$(INSTALL_FILE)");
    13251325                    } else {
    13261326                        cmd = inst_prefix + QString(fi.isExecutable() ? "$(INSTALL_PROGRAM)" : "$(INSTALL_FILE)");
Note: See TracChangeset for help on using the changeset viewer.