- Remove cmake's build .log from grpc-source to make build-compare happier.

OBS-URL: https://build.opensuse.org/package/show/devel:tools/grpc?expand=0&rev=101
This commit is contained in:
Jan Engelhardt 2021-08-30 17:53:48 +00:00 committed by Git OBS Bridge
parent b0148ddd8a
commit c5319addba
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Aug 30 17:52:56 UTC 2021 - Jan Engelhardt <jengelh@inai.de>
- Remove cmake's build .log from grpc-source to make
build-compare happier.
-------------------------------------------------------------------
Wed Jul 28 11:09:10 UTC 2021 - Atri Bhattacharya <badshah400@gmail.com>

View File

@ -159,9 +159,10 @@ popd
# Install sources
pushd %__builddir
rm -fv CMakeFiles/*.log
make clean
rm -f "b"
find . -type f "(" -name "*.so" -o -name "*.o" -o -name ".git*" -o -name "*.bin" -o -name "*.out" ")" -exec rm -rf {} +
find . -type f "(" -name "*.so" -o -name "*.o" -o -name ".git*" -o \
-name "*.bin" -o -name "*.out" ")" -exec rm -Rfv {} +
popd
# Don't include abseil-cpp in sources
rm -fr third_party/abseil-cpp/*