summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Bakken <agbakken@gmail.com>2011-05-10 11:39:35 -0700
committerQt by Nokia <qt-info@nokia.com>2011-09-12 16:03:47 +0200
commit8b6070804436aec3bbf5b896e66e6f195a744e02 (patch)
tree73d854edc9d810392a5d80d03cb3a39bcfb7a46b
parent93fde87898ac9680cd2c872ecf71b32adba50216 (diff)
Fix make confclean
Merge-request: 1227 Reviewed-by: ossi (cherry-picked from commit 792b4b500ab740f89db5586791105ff13778b87f) Change-Id: Id5ec2cfb228691c8483bf1d9e0c6a763aa649217 Reviewed-on: http://codereview.qt-project.org/4570 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-rw-r--r--qtbase.pro8
1 files changed, 4 insertions, 4 deletions
diff --git a/qtbase.pro b/qtbase.pro
index c28bc9382b..d20e30d843 100644
--- a/qtbase.pro
+++ b/qtbase.pro
@@ -74,15 +74,15 @@ unix:!symbian {
(cd config.tests/x11/xshape && $(MAKE) distclean); \
(cd config.tests/x11/opengl && $(MAKE) distclean); \
$(DEL_FILE) config.tests/.qmake.cache; \
- $(DEL_FILE) src/core/global/qconfig.h; \
- $(DEL_FILE) src/core/global/qconfig.cpp; \
+ $(DEL_FILE) src/corelib/global/qconfig.h; \
+ $(DEL_FILE) src/corelib/global/qconfig.cpp; \
$(DEL_FILE) mkspecs/qconfig.pri; \
$(DEL_FILE) .qmake.cache; \
(cd qmake && $(MAKE) distclean);
}
win32 {
- confclean.commands += -$(DEL_FILE) src\\core\\global\\qconfig.h $$escape_expand(\\n\\t) \
- -$(DEL_FILE) src\\core\\global\\qconfig.cpp $$escape_expand(\\n\\t) \
+ confclean.commands += -$(DEL_FILE) src\\corelib\\global\\qconfig.h $$escape_expand(\\n\\t) \
+ -$(DEL_FILE) src\\corelib\\global\\qconfig.cpp $$escape_expand(\\n\\t) \
-$(DEL_FILE) mkspecs\\qconfig.pri $$escape_expand(\\n\\t) \
-$(DEL_FILE) .qmake.cache $$escape_expand(\\n\\t) \
(cd qmake && $(MAKE) distclean)