diff options
author | Anders Bakken <agbakken@gmail.com> | 2011-05-10 11:39:35 -0700 |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2011-05-13 11:55:33 +0200 |
commit | 792b4b500ab740f89db5586791105ff13778b87f (patch) | |
tree | e4f69a3b74ce942f87b8c80221ab855e2c2034e5 /projects.pro | |
parent | 8e6e571c6245ba30449aae6a8da5f1c26d5abee6 (diff) | |
download | qt4-tools-792b4b500ab740f89db5586791105ff13778b87f.tar.gz |
Fix make confclean
Merge-request: 1227
Reviewed-by: ossi
Diffstat (limited to 'projects.pro')
-rw-r--r-- | projects.pro | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/projects.pro b/projects.pro index 2e31e9a706..02bf61dbdc 100644 --- a/projects.pro +++ b/projects.pro @@ -97,15 +97,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) |