diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-06-12 17:04:21 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-06-12 17:05:38 +0000 |
commit | 86846fe12dbda3cd376806dbc8996c3890326e94 (patch) | |
tree | a1a4db82ac3514436914d6f41082ca01834155bd /main | |
parent | dc8de95a95641c17225ce5e68900479fe743ca37 (diff) | |
download | aports-86846fe12dbda3cd376806dbc8996c3890326e94.tar.bz2 aports-86846fe12dbda3cd376806dbc8996c3890326e94.tar.xz |
main/ghostscript: work around parallel build issue
Diffstat (limited to 'main')
-rw-r--r-- | main/ghostscript/APKBUILD | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/main/ghostscript/APKBUILD b/main/ghostscript/APKBUILD index e4aba8acd4..f0a7d74bc4 100644 --- a/main/ghostscript/APKBUILD +++ b/main/ghostscript/APKBUILD @@ -77,8 +77,7 @@ build(){ --prefix=/usr \ --enable-shared \ --disable-static \ - || return 1 - make || return 1 + make cd "$builddir" @@ -100,9 +99,9 @@ build(){ --enable-gtk \ --with-drivers=ALL \ --with-fontpath=/usr/share/fonts/Type1:/usr/share/fonts \ - --disable-compile-inits \ - || return 1 - make so all || return 1 + --disable-compile-inits + make obj/arch.h # workaround parallel build issue + make so all } package() { |