rpm/rpm-4.4.2.3-no-jar-exclude.patch
Panu Matilainen 8dd1aac03e Pile of patches to clear up accumulated bug queue...
- abort transaction on python callback crash
- package signing fixes (#442761, #463482)
- fix uncompress macro wrt bzip
- force cloexec all open descriptors on scriptlet execution
- make find-lang --with-man brp-compress friendly
- handle headerLoad() failure in rpmReadHeader() correctly
- fix --nodirtokens build option (#462391)
- drop no longer necessary jar.so.debug kludge (#442264)
- remove buggy, i386-specific RDTSC timing code (#435309)
- fix retrieval of multiple package through a proxy (#450205)
- ensure default SIGPIPE handler for --pipe (#444389)
2008-12-12 17:53:04 +00:00

23 lines
740 B
Diff

commit 29ea11c3cb07dd6ea97accc41fc2b569f0d05e74
Author: Panu Matilainen <pmatilai@redhat.com>
Date: Tue Apr 15 13:13:40 2008 +0300
Don't exempt *.jar.so.debug from buildroot checks (rhbz#442264)
- jar-kludge no longer necessary...
Patch from Ville Skyttä
diff --git a/scripts/check-buildroot b/scripts/check-buildroot
index 0a9ec4b..89a283f 100755
--- a/scripts/check-buildroot
+++ b/scripts/check-buildroot
@@ -27,7 +27,7 @@ trap "rm -f $tmp" EXIT
find "$RPM_BUILD_ROOT" \! \( \
-name '*.pyo' -o -name '*.pyc' -o -name '*.elc' -o -name '.packlist' \
- -o -name '*.jar.so.debug' \) -type f -print0 | \
+ \) -type f -print0 | \
LANG=C xargs -0r grep -F "$RPM_BUILD_ROOT" >$tmp
test -s "$tmp" && {