summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Nelson <pyro@debian.org>2007-06-26 21:39:52 +0000
committerBrian Nelson <pyro@debian.org>2007-06-26 21:39:52 +0000
commitf1a638ff9ab58267cb3e93474ed0c1d96fc21b62 (patch)
tree52638fe60ce662af1838c13da4d998bc73a88488
parent601607d4c3f4ac37ad663ef7fd2b4b7c933e2a2a (diff)
downloadqt4-x11-f1a638ff9ab58267cb3e93474ed0c1d96fc21b62.tar.gz
* Constrict the hack to clean all binary files to the bin and
config.tests directories to drastically improve its speed
-rw-r--r--debian/changelog4
-rwxr-xr-xdebian/rules12
2 files changed, 9 insertions, 7 deletions
diff --git a/debian/changelog b/debian/changelog
index aca3ad6..c89db6f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,8 @@ qt4-x11 (4.3.0-2) unstable; urgency=low
(= ${Source-Version}), since it uses internal (non-public) classes in
Qt whose ABI can change. (Closes: #429817)
* Added a build-dependency on libxi-dev to enable tablet support.
+ * Constrict the hack to clean all binary files to the bin and
+ config.tests directories to drastically improve its speed
[Fathi Boudra]
* Qt4 demos builds properly in Qt4.3. (Closes: #408639)
@@ -22,7 +24,7 @@ qt4-x11 (4.3.0-2) unstable; urgency=low
_all_ widgets that contain the QPoint.
* 00_0182-argb-visuals-default: Qt handling argb visuals on X11.
- -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Tue, 26 Jun 2007 19:03:06 +0200
+ -- Brian Nelson <brian@catchmedia.com> Tue, 26 Jun 2007 17:38:16 -0400
qt4-x11 (4.3.0-1) experimental; urgency=low
diff --git a/debian/rules b/debian/rules
index e130514..71979bd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -69,7 +69,6 @@ common-configure-arch::
$(EXTRA_CONFIGURE_OPTS)
clean::
-
# Extra stuff missed by confclean/distclean
rm -f Makefile \
bin/qmake \
@@ -79,14 +78,15 @@ clean::
config.status \
demos/shared/libdemo_shared.prl \
mkspecs/qconfig.pri \
- src/corelib/global/qconfig.*
+ src/corelib/global/qconfig.* \
+ tools/qtestlib/updater/updater \
+ examples/tools/plugandpaint/plugins/libpnp_basictools.a \
+ examples/qdbus/complexpingpong/Makefile* \
+ examples/qdbus/pingpong/Makefile*
rm -rf lib/ plugins/
- find . -exec file {} \; | grep ELF | sed 's/:.*//' | xargs rm -f
- rm -f examples/tools/plugandpaint/plugins/libpnp_basictools.a
- rm -f examples/qdbus/complexpingpong/Makefile*
- rm -f examples/qdbus/pingpong/Makefile*
+ find bin/ config.tests/ -exec file {} \; | grep ELF | sed 's/:.*//' | xargs rm -f
find include/ -type l -print0 | xargs -0r rm -f
find . -mindepth 2 -name Makefile -print0 \