From 545215da191beaad2e48b198337d043b51839ad8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Thu, 27 Feb 2025 14:29:03 +0100 Subject: [PATCH] Fix test data generation script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář (cherry picked from commit 6a9c8551d2449b4a9581b403562338be765861a5) --- tests/data/specs/build.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/data/specs/build.sh b/tests/data/specs/build.sh index fea78ace..a40f5deb 100755 --- a/tests/data/specs/build.sh +++ b/tests/data/specs/build.sh @@ -35,6 +35,11 @@ for spec in $DIR/*.spec; do if [ "$(basename $spec)" == "dummy-skype.spec" ]; then continue fi + if [ "$(basename $spec)" == "dummy-fcoe-target-utils.spec" ]; then + if [ "$target" == "ppc" -o "$target" == "s390" -o "$target" == "s390x" ]; then + continue + fi + fi echo "Building ${spec/.spec/} for $target" rpmbuild --quiet --target=$target -ba --nodeps --define "_srcrpmdir $DIR/../repo/src" --define "_rpmdir $DIR/../repo" $spec done