aboutsummaryrefslogtreecommitdiffstats
path: root/platform
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2024-02-07 01:30:12 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2024-02-07 10:24:04 -0300
commit0edc987645b53192f605955f2a952304aac31a28 (patch)
tree96260fac3d64dcc040672cc170b15b56a020c266 /platform
parentbuild: fix running make clean with undefined vars (diff)
downloadfirejail-0edc987645b53192f605955f2a952304aac31a28.tar.gz
firejail-0edc987645b53192f605955f2a952304aac31a28.tar.zst
firejail-0edc987645b53192f605955f2a952304aac31a28.zip
build: mkrpm.sh: remove --quiet from rpmbuild
To make the CI logs more informative, as currently nothing from the build itself is shown. Added on commit d684d9988 ("Fix mkrpm.sh", 2016-02-16) / PR #297.
Diffstat (limited to 'platform')
-rwxr-xr-xplatform/rpm/mkrpm.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/rpm/mkrpm.sh b/platform/rpm/mkrpm.sh
index 7fbc35575..a8e7e55ab 100755
--- a/platform/rpm/mkrpm.sh
+++ b/platform/rpm/mkrpm.sh
@@ -47,7 +47,7 @@ tar --exclude='./.git*' --transform "s/^./${name}-${version}/" \
47 -czf "${tmpdir}/SOURCES/${name}-${version}.tar.gz" . 47 -czf "${tmpdir}/SOURCES/${name}-${version}.tar.gz" .
48 48
49# Build the files (rpm, debug rpm and source rpm) 49# Build the files (rpm, debug rpm and source rpm)
50rpmbuild --quiet --define "_topdir ${tmpdir}" -ba "${tmp_spec_file}" 50rpmbuild --define "_topdir ${tmpdir}" -ba "${tmp_spec_file}"
51 51
52# Copy the results to cwd 52# Copy the results to cwd
53mv "${tmpdir}/SRPMS"/*.rpm "${tmpdir}/RPMS"/*/*rpm . 53mv "${tmpdir}/SRPMS"/*.rpm "${tmpdir}/RPMS"/*/*rpm .