From a2f2504b7e362577e43c0b6b9cf049ce5efda73d Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 19 Aug 2013 07:21:46 +0000 Subject: [PATCH] Do not remove all *.o in tests. Some of them are from upstream source tarball. Thanks to Maarten Lankhorst for the fix. --- debian/changelog | 2 ++ debian/rules | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 9d19a4c6..c8497384 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ llvm-toolchain-3.3 (1:3.3-6) unstable; urgency=low * Fix the FTBFS under hurd + * Do not remove all *.o in tests. Some of them are from upstream source + tarball. Thanks to Maarten Lankhorst for the fix. -- Sylvestre Ledru Sun, 18 Aug 2013 16:45:53 +0200 diff --git a/debian/rules b/debian/rules index 41c52e3c..45de70dc 100755 --- a/debian/rules +++ b/debian/rules @@ -291,7 +291,8 @@ override_dh_auto_clean: rm -rf $(TARGET_BUILD) tools/clang/include/clang/Debian/debian_path.h docs/_build/ tools/clang/docs/_html/ rm -f `ls debian/*.in|sed -e "s|.in$$||g"` find utils -name '*.pyc' | xargs -r rm -f - find test -name '*.pyc' -o -name '*.o' -o -name '*.cm[ix]' | xargs -r rm -f + find test -name '*.pyc' -o -name '*.cm[ix]' | xargs -r rm -f + find test/Bindings -name '*.o' | xargs -r rm -f rm -f tools/clang tools/polly tools/lldb projects/compiler-rt rm -rf tools/clang/tools/extra