diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2015-03-27 04:11:00 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2015-03-27 04:11:00 +0800 |
commit | 42ced428e2a9eb852da4671006dedc7c0a0092e2 (patch) | |
tree | e301a67dcda04e682b46488936d980ed68fbf7c0 /mingw-w64-gtk2/PKGBUILD | |
parent | b7a300437ac0876d682efe7f1d4072001c484190 (diff) | |
download | AUR-PKGBUILD-42ced428e2a9eb852da4671006dedc7c0a0092e2.tar.gz AUR-PKGBUILD-42ced428e2a9eb852da4671006dedc7c0a0092e2.tar.zst AUR-PKGBUILD-42ced428e2a9eb852da4671006dedc7c0a0092e2.zip |
mingw-w64-gtk2: Drop make -j1
Diffstat (limited to 'mingw-w64-gtk2/PKGBUILD')
-rw-r--r-- | mingw-w64-gtk2/PKGBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mingw-w64-gtk2/PKGBUILD b/mingw-w64-gtk2/PKGBUILD index 3f336ab..94b3f8a 100644 --- a/mingw-w64-gtk2/PKGBUILD +++ b/mingw-w64-gtk2/PKGBUILD @@ -46,7 +46,7 @@ package() { cd "${srcdir}/gtk+-${pkgver}" for _arch in ${_architectures}; do cd "build-${_arch}" - make -j1 DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install find "$pkgdir/usr/${_arch}" -name '*.exe' -o -name '*.bat' -o -name '*.def' -o -name '*.exp' -o -name '*.manifest' | xargs -rtl1 rm find "$pkgdir/usr/${_arch}" -name '*.dll' | xargs -rtl1 ${_arch}-strip -x find "$pkgdir/usr/${_arch}" -name '*.a' -o -name '*.dll' | xargs -rtl1 ${_arch}-strip -g |