mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-19 17:06:04 -07:00
gitlab: Remove make -j options.
Use the runner MAKEFLAGS instead.
This commit is contained in:
parent
c70aa35ea5
commit
a912eb809b
2 changed files with 5 additions and 5 deletions
|
@ -12,5 +12,5 @@ autoreconf -f
|
|||
|
||||
cd build64
|
||||
../configure -q -C --enable-werror --enable-archs=i386,x86_64,aarch64 --with-mingw=clang
|
||||
make -s -j$(nproc)
|
||||
make -s
|
||||
cd ..
|
||||
|
|
|
@ -12,18 +12,18 @@ autoreconf -f
|
|||
|
||||
cd build64
|
||||
../configure -q -C --enable-win64 --enable-werror --with-mingw
|
||||
make -s -j$(nproc)
|
||||
make -s
|
||||
cd ..
|
||||
|
||||
cd build32
|
||||
../configure -q -C --enable-werror --with-mingw
|
||||
make -s -j$(nproc)
|
||||
make -s
|
||||
cd ..
|
||||
|
||||
if ! test -s .git/rebase-merge/git-rebase-todo
|
||||
then
|
||||
make -s -j$(nproc) -C build32 install-lib install-test DESTDIR=$BASEDIR
|
||||
make -s -j$(nproc) -C build64 install-lib install-test DESTDIR=$BASEDIR
|
||||
make -s -C build32 install-lib install-test DESTDIR=$BASEDIR
|
||||
make -s -C build64 install-lib install-test DESTDIR=$BASEDIR
|
||||
fi
|
||||
|
||||
git reset --hard
|
||||
|
|
Loading…
Reference in a new issue