X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-qt0-f174.google.com (mail-qt0-f174.google.com [209.85.216.174]) by lists.alpinelinux.org (Postfix) with ESMTP id 803965C4E62 for ; Mon, 26 Feb 2018 05:26:12 +0000 (GMT) Received: by mail-qt0-f174.google.com with SMTP id c7so17438450qtn.3 for ; Sun, 25 Feb 2018 21:26:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id; bh=0N1HetSFDCE8puOGdRko3SRn8j8WZeMbpETxSGc+iek=; b=ZMv6Oz7nJYsuHgixfd5eRAqmVz9b3MO5T0uOod4TI+UEhNFvkhuZzFRkqw6VQiSon0 +5MwDu4fWkFOG/EJhgw2+I1Ho2vL1O5aZQi/xiC+8uNQZxmTxjVPxKiz082O1AuAG0H2 xFQ269dcOcvVjmed9WbsR0NYjXrxzSnnkjNC5nu+tZPpfcR5oXBssvcmsGtQOqRK1Cdt hIlbI4S+DX1U6XFjJQwGiUAjC/AQ7yIj4W+ODnCzt4sjrWA5JRyxqpHNUzoT2B2Too6L MSBpY86j8dmJ7TLPhJ3Cs681bMoNCibaxk5sjj/K6ABss0S5EKSat5NmicUd/jdQJJVS qGhA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id; bh=0N1HetSFDCE8puOGdRko3SRn8j8WZeMbpETxSGc+iek=; b=OaW7XteWdxW/Zx5o5ieH1sxSGwCPM7d2qLpXJC8m7cDtn+CoV7kYLw3JVMapJhh3YY ik3JzoPXZbMKlag8xwV19GZWdkgMD90Qnm7ZgcB4fJZbsjJTWirtq0atR4shBcxZ0gZ6 UVzWClFDza5sb8LNl3pfiPT3sS/Agmm6uZZdmfcYmg3Xl2mol2yp3OdG6C1bonPcgLku rSHEZ8nHnmCG3FS4J6YCuRUSafqxjMD8TcCXPLTe0MdxYMzTHcDalo4Ncvf0DN5rbaBb pdgknQgbpe9/1wNYFa4NK/rBjVHtKwzzZWvaR+6qKkacXI7Sp4aNwtZU5n64g+rPz+/N sdCQ== X-Gm-Message-State: APf1xPBt+WPcp3kiSMUs68OhQcpvEeAiqG0CBU7I3fBw/txCUh+uEi2U jpc5OPfAJ0QuPcmhFEgq5DPNKQ== X-Google-Smtp-Source: AG47ELtwTnkY9hnlT2PapmKwI7B5Sz1+BEYB4z0pmWksC7C77NcN93d1mG23BmhLhNKbMWFHT3GJ7A== X-Received: by 10.200.25.60 with SMTP id t57mr16354129qtj.81.1519622771675; Sun, 25 Feb 2018 21:26:11 -0800 (PST) Received: from localhost.localdomain (c-71-60-35-21.hsd1.pa.comcast.net. [71.60.35.21]) by smtp.googlemail.com with ESMTPSA id s4sm5020185qta.34.2018.02.25.21.26.10 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 25 Feb 2018 21:26:11 -0800 (PST) From: Daniel Sabogal To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] main/curses: use abuild strip only Date: Mon, 26 Feb 2018 00:29:41 -0500 Message-Id: <20180226052941.22550-1-dsabogalcc@gmail.com> X-Mailer: git-send-email 2.16.2 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Fails to cross-compile: strip: Unable to recognise the format of the input file `[...]/aports/main/ncurses/pkg/ncurses/usr/bin/tic' install: strip: No such file or directory make[1]: *** [Makefile:201: install.progs] Error 1 --- main/ncurses/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/ncurses/APKBUILD b/main/ncurses/APKBUILD index 604bd39377..541010af1c 100644 --- a/main/ncurses/APKBUILD +++ b/main/ncurses/APKBUILD @@ -2,7 +2,7 @@ pkgname=ncurses pkgver=6.0_p20180121 _ver=${pkgver%_p*}-${pkgver#*_p} -pkgrel=0 +pkgrel=1 pkgdesc="Console display library" url="https://www.gnu.org/software/ncurses/" arch="all" @@ -33,6 +33,7 @@ build() { --without-tests \ --disable-termcap \ --disable-rpath-hack \ + --disable-stripping \ --with-pkg-config-libdir=/usr/lib/pkgconfig \ --without-cxx-binding \ --with-terminfo-dirs="/etc/terminfo:/usr/share/terminfo" \ -- 2.16.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---