Revert setting jobs option for make

This option should be set in makepkg.conf instead of being passed by the package
This commit is contained in:
Manuel 2022-11-23 17:50:04 +01:00
parent f2df8d03a4
commit dd6f45b146
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ build() {
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INSTALL_DATADIR=/share \
-DCMAKE_BUILD_TYPE=Release
make -C build -j $(nproc)
make -C build
export CFLAGS="-m32 ${CFLAGS}"
export CXXFLAGS="-m32 ${CXXFLAGS}"
@ -31,7 +31,7 @@ build() {
-DCMAKE_LIBRARY_PATH=/usr/lib32 \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_PLUGIN=OFF
make -C build32 -j $(nproc)
make -C build32
}
package_obs-vkcapture() {