summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2014-10-25 17:20:48 +0200
committerDave Reisner <dreisner@archlinux.org>2014-10-25 17:36:28 +0200
commitb58fb33482bdce19163eb23ea79bb1a2f74b1719 (patch)
tree0bd9932e3999870f9dbe363db8f280cb3f788821
parentf743f58682d47fba5366c910d6179851e1f9483e (diff)
downloaddevtools-b58fb33482bdce19163eb23ea79bb1a2f74b1719.tar.gz
devtools-b58fb33482bdce19163eb23ea79bb1a2f74b1719.tar.xz
checkpkg: mask errors from lib-provides
bsdtar doesn't consider it an error when your --include doesn't match anything in the archive, so we're forced to dump stderr to /dev/null here. Fixes: https://bugs.archlinux.org/task/42551
-rw-r--r--checkpkg.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/checkpkg.in b/checkpkg.in
index 6ba04ed..467ac74 100644
--- a/checkpkg.in
+++ b/checkpkg.in
@@ -63,8 +63,8 @@ for _pkgname in "${pkgname[@]}"; do
sdiff -s "$TEMPDIR/filelist-$_pkgname-old" "$TEMPDIR/filelist-$_pkgname"
- find-libprovides "$TEMPDIR/$oldpkg" | sort > "$TEMPDIR/libraries-$_pkgname-old"
- find-libprovides "$pkgfile" | sort > "$TEMPDIR/libraries-$_pkgname"
+ find-libprovides "$TEMPDIR/$oldpkg" 2>/dev/null | sort > "$TEMPDIR/libraries-$_pkgname-old"
+ find-libprovides "$pkgfile" 2>/dev/null | sort > "$TEMPDIR/libraries-$_pkgname"
if ! diff_output="$(sdiff -s "$TEMPDIR/libraries-$_pkgname-old" "$TEMPDIR/libraries-$_pkgname")"; then
msg "Sonames differ in $_pkgname!"
echo "$diff_output"