From eaf0be27972076075c6b1d65898de2625841a21f Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Thu, 24 Sep 2015 13:57:13 +0200 Subject: [PATCH] miller: disable profiling build for musl. --- srcpkgs/miller/template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/miller/template b/srcpkgs/miller/template index 8dd10e38662..1a46d4aa959 100644 --- a/srcpkgs/miller/template +++ b/srcpkgs/miller/template @@ -1,7 +1,7 @@ # Template file for 'miller' pkgname=miller version=2.2.1 -revision=1 +revision=2 build_style=gnu-configure build_pie=yes hostmakedepends="automake libtool flex asciidoc" @@ -13,6 +13,8 @@ distfiles="https://github.com/johnkerl/${pkgname}/archive/v${version}.tar.gz" checksum=816a1822cac06752e6ea703d435e0dff65ab23d393350afadd46eb422448503f pre_configure() { + # Disable debugging and profiling versions, broken on musl. + echo 'noinst_PROGRAMS=' >> c/Makefile.am autoreconf -fi }