Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/qmake/generators/mac/pbuilder_pbx.cpp

    r651 r846  
    11/****************************************************************************
    22**
    3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
    44** All rights reserved.
    55** Contact: Nokia Corporation (qt-info@nokia.com)
     
    524524            QTextStream mkt(&mkf);
    525525            writeHeader(mkt);
    526             mkt << "QMAKE    = "        << (project->isEmpty("QMAKE_QMAKE") ?
    527                                             QString((QLibraryInfo::location(QLibraryInfo::BinariesPath) + "/qmake")) :
    528                                             var("QMAKE_QMAKE")) << endl;
     526            mkt << "QMAKE    = " << var("QMAKE_QMAKE") << endl;
    529527            writeMakeQmake(mkt);
    530528            mkt.flush();
     
    543541          << "\t\t\t" << writeSettings("neededFileNames", QStringList(), SettingsAsList, 4) << ";" << "\n"
    544542          << "\t\t\t" << writeSettings("shellPath", "/bin/sh") << ";" << "\n"
    545           << "\t\t\t" << writeSettings("shellScript", fixForOutput("make -C " + escapeFilePath(qmake_getpwd()) + " -f " + escapeFilePath(mkfile))) << ";" << "\n"
     543          << "\t\t\t" << writeSettings("shellScript", fixForOutput("make -C " + escapeFilePath(qmake_getpwd()) + " -f '" + escapeFilePath(mkfile) + "'")) << ";" << "\n"
    546544          << "\t\t" << "};" << "\n";
    547545    }
     
    792790          << "\t\t\t" << writeSettings("neededFileNames", fixListForOutput("QMAKE_PBX_OBJ"), SettingsAsList, 4) << ";" << "\n"
    793791          << "\t\t\t" << writeSettings("shellPath", "/bin/sh") << ";" << "\n"
    794           << "\t\t\t" << writeSettings("shellScript", fixForOutput("make -C " + escapeFilePath(qmake_getpwd()) + " -f " + escapeFilePath(mkfile))) << ";" << "\n"
     792          << "\t\t\t" << writeSettings("shellScript", fixForOutput("make -C " + escapeFilePath(qmake_getpwd()) + " -f '" + escapeFilePath(mkfile) + "'")) << ";" << "\n"
    795793          << "\t\t" << "};" << "\n";
    796794   }
     
    971969          << "\t\t\t" << writeSettings("neededFileNames", QStringList(), SettingsAsList, 4) << ";" << "\n"
    972970          << "\t\t\t" << writeSettings("shellPath", "/bin/sh") << "\n"
    973           << "\t\t\t" << writeSettings("shellScript", fixForOutput("make -C " + escapeFilePath(qmake_getpwd()) + " -f " + escapeFilePath(mkfile))) << ";" << "\n"
     971          << "\t\t\t" << writeSettings("shellScript", fixForOutput("make -C " + escapeFilePath(qmake_getpwd()) + " -f '" + escapeFilePath(mkfile) + "'")) << ";" << "\n"
    974972          << "\t\t" << "};" << "\n";
    975973    }
  • trunk/qmake/generators/mac/pbuilder_pbx.h

    r651 r846  
    11/****************************************************************************
    22**
    3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
    44** All rights reserved.
    55** Contact: Nokia Corporation (qt-info@nokia.com)
Note: See TracChangeset for help on using the changeset viewer.