libbuild.sh: pass arguments to make
Otherwise, e.g. `make check` && `make install` won't actually do anything. Closes: #765 Approved by: cgwalters
This commit is contained in:
parent
a284b64479
commit
3f5f749f82
@ -6,7 +6,9 @@ set -xeuo pipefail
|
||||
dn=$(dirname $0)
|
||||
. ${dn}/libbuild.sh
|
||||
${dn}/build.sh
|
||||
make check
|
||||
# NB: avoid make function because our RPM building doesn't
|
||||
# support parallel runs right now
|
||||
/usr/bin/make check
|
||||
make install
|
||||
gnome-desktop-testing-runner rpm-ostree
|
||||
sudo --user=testuser gnome-desktop-testing-runner rpm-ostree
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
make() {
|
||||
/usr/bin/make -j $(getconf _NPROCESSORS_ONLN)
|
||||
/usr/bin/make -j $(getconf _NPROCESSORS_ONLN) "$@"
|
||||
}
|
||||
|
||||
build() {
|
||||
|
Loading…
Reference in New Issue
Block a user