From f05e6571ecee84b1309ae306f3081fb8d7f012bb Mon Sep 17 00:00:00 2001 From: Mikkel Krautz Date: Sun, 22 Mar 2015 13:16:23 +0100 Subject: [PATCH] Fix typo in speex-build.pro: '../speex-build' instead of '../speex-srcbuild'. The new 'no_include_pwd' CONFIG option introduced by d855b67d10b493afbae7cb5756ecf0d1b6270722 showed us this bug. Before that commit, OS X *did* include PWD in the INCLUDEPATH by default. Because of that, the equivalent of '../speex-build' was *already* in the INCLUDEPATH, because 'speex-build' is the PWD of the .pro file. Now that we explicitly require the PWD not to be included, our own inclusion of 'speex-build' must be spelled correctly to work. This commit fixes that. --- 3rdparty/speex-build/speex-build.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/speex-build/speex-build.pro b/3rdparty/speex-build/speex-build.pro index 18d9a520e..9656e4e2e 100644 --- a/3rdparty/speex-build/speex-build.pro +++ b/3rdparty/speex-build/speex-build.pro @@ -58,7 +58,7 @@ win32 { } } else { CONFIG += staticlib - INCLUDEPATH += ../speex-srcbuild + INCLUDEPATH += ../speex-build } DIST = config.h speex.def speex/speex_config_types.h