From 9efc9ce0e42fd973d9a958700d69e578a8c8c57f Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Tue, 11 Aug 2009 12:38:23 +0200 Subject: [PATCH] make $$_QMAKE_CACHE_ return something useful now that we support it --- src/shared/proparser/profileevaluator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/proparser/profileevaluator.cpp b/src/shared/proparser/profileevaluator.cpp index bb7d5b69f7d..8a774c26d16 100644 --- a/src/shared/proparser/profileevaluator.cpp +++ b/src/shared/proparser/profileevaluator.cpp @@ -2518,7 +2518,7 @@ QStringList ProFileEvaluator::Private::values(const QString &variableName, if (variableName == QLatin1String("_PRO_FILE_PWD_")) return QStringList(QFileInfo(m_profileStack.first()->fileName()).absolutePath()); if (variableName == QLatin1String("_QMAKE_CACHE_")) - return QStringList(); // FIXME? + return QStringList(m_option->cachefile); if (variableName.startsWith(QLatin1String("QMAKE_HOST."))) { QString ret, type = variableName.mid(11); #if defined(Q_OS_WIN32)