Merge remote-tracking branch 'origin/15' into 16

This commit is contained in:
Sylvestre Ledru 2023-03-18 21:42:59 +01:00
commit ab73130494
3 changed files with 5 additions and 1 deletions

1
debian/changelog vendored
View File

@ -105,6 +105,7 @@ llvm-toolchain-snapshot (1:16~++20220731055325+02b3a358926e-1~exp1) experimental
llvm-toolchain-15 (1:15.0.7-4) UNRELEASED; urgency=medium
* Fix debian/libclang1-15.symbols soname
* Remove build artifacts if any
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 15 Mar 2023 21:45:46 +0100

2
debian/orig-tar.sh vendored
View File

@ -155,7 +155,7 @@ else
fi
# cleanup
rm -rf */www/
rm -rf */www/ build/ build-llvm/
cd ../
BASE="llvm-toolchain-${MAJOR_VERSION}_${VERSION}"

3
debian/rules vendored
View File

@ -577,6 +577,9 @@ override_dh_auto_configure: preconfigure
$(CC) -v
$(CXX) -v
mkdir -p $(TARGET_BUILD)
# remove in case of artifact
rm -rf build
if test "$(SCAN_BUILD)" = "yes"; then \
patch -f -p1 < debian/patches/on-the-fly/use-scan-build-runtimes.diff||true; \
fi