diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-06-10 08:10:02 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2009-06-12 02:00:45 (GMT) |
commit | 1af699da3ba90f5616c4871761653ed5639b2204 (patch) | |
tree | cd74f0545cc88770581af04a2e1ac590abfd7c3b | |
parent | 33c51421dad91263b5db1fa0d0de27ef0eeb231e (diff) | |
download | Qt-1af699da3ba90f5616c4871761653ed5639b2204.zip Qt-1af699da3ba90f5616c4871761653ed5639b2204.tar.gz Qt-1af699da3ba90f5616c4871761653ed5639b2204.tar.bz2 |
fix "make debug" under windows
use relative path for include (like every other subtree does), otherwise
$$fromfile() does not find the file, thus the template is unknown and
thus the generic "first" target is used instead of "debug", which tries a
generic build against non-existing release libs - boom.
Reviewed-by: TrustMe
(cherry picked from commit dfb61e59f0a1c2113cc01c99c3fd052efa2b6c8e)
-rw-r--r-- | src/phonon/phonon.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/phonon/phonon.pro b/src/phonon/phonon.pro index ec7e46a..9e7879f 100644 --- a/src/phonon/phonon.pro +++ b/src/phonon/phonon.pro @@ -1,5 +1,5 @@ TARGET = phonon -include($$QT_SOURCE_TREE/src/qbase.pri) +include(../qbase.pri) PHONON_MAJOR_VERSION = $${QT_MAJOR_VERSION} PHONON_MINOR_VERSION = 3 |