summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packaging/same-build-result.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/packaging/same-build-result.sh b/packaging/same-build-result.sh
index 2e879e4..701ccf2 100644
--- a/packaging/same-build-result.sh
+++ b/packaging/same-build-result.sh
@@ -13,6 +13,7 @@
CMPSCRIPT=${0%/*}/pkg-diff.sh
SCMPSCRIPT=${0%/*}/srpm-check.sh
+FUNCTIONS=${0%/*}/functions.sh
check_all=1
OLDDIR="$1"
@@ -30,6 +31,8 @@ if [ -z "$NEWDIRS" ]; then
exit 1
fi
+source $FUNCTIONS
+
first_rpm=$(find $NEWDIRS -name *.rpm | head -1)
dist=$(rpm -qp --nodigest --nosignature --qf "%{DISTRIBUTION}" $first_rpm | sed -r 's/(.*)\/.*/\1/')
prerelease=0
@@ -41,7 +44,7 @@ if ! is_prerelease_project $dist; then
num_old_pkgs=`find $OLDDIR -name '*.rpm' -and ! -name '*.delta.rpm' -and ! -name '*.src.rpm' | wc -l`
if test $num_new_pkgs != $num_old_pkgs; then
echo "different number of subpackages"
- find $OLDDIR $NEWDIRS -name '*.rpm' -and ! -name '*.delta.rpm'
+ find $OLDDIR $NEWDIRS -name '*.rpm' -and ! -name '*.delta.rpm' -and ! -name '*.src.rpm'
exit 1
fi