diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-08-26 13:10:39 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-08-27 04:57:31 +0000 |
commit | cc30004f9cf7f42466de2468053265dc6f1813ef (patch) | |
tree | 82a5a9e1aadd5c753cd399591838feb74e31a108 /main | |
parent | d6665f534fe8a9e5ed70d711765eedd52f48ab75 (diff) | |
download | aports-cc30004f9cf7f42466de2468053265dc6f1813ef.tar.bz2 aports-cc30004f9cf7f42466de2468053265dc6f1813ef.tar.xz |
main/cups-filters: rebuild against libpng16
Diffstat (limited to 'main')
-rw-r--r-- | main/cups-filters/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/cups-filters/APKBUILD b/main/cups-filters/APKBUILD index 31a59e8af..d105d3f61 100644 --- a/main/cups-filters/APKBUILD +++ b/main/cups-filters/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=cups-filters pkgver=1.0.36 -pkgrel=0 +pkgrel=1 pkgdesc="OpenPrinting CUPS filters and backends" url="http://www.linuxfoundation.org/collaborate/workgroups/openprinting/pdf_as_standard_print_job_format" arch="all" @@ -42,7 +42,8 @@ build() { --without-rcdir \ --without-rclevels \ || return 1 - make || return 1 + # workaround parallel build issue by building libcupsfilters.la first + make libcupsfilters.la && make || return 1 } package() { |