From patchwork Sat Jun 14 10:56:48 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 359764 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id C8515140096 for ; Sat, 14 Jun 2014 20:57:07 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B4B578A969; Sat, 14 Jun 2014 10:57:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WIIX2kxi6iyo; Sat, 14 Jun 2014 10:57:06 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id D97F38ADBB; Sat, 14 Jun 2014 10:57:05 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 83B091BF974 for ; Sat, 14 Jun 2014 10:57:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 7FE0E8ADBB for ; Sat, 14 Jun 2014 10:57:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Q5ah6+3ULsZs for ; Sat, 14 Jun 2014 10:57:03 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id E99028A969 for ; Sat, 14 Jun 2014 10:57:02 +0000 (UTC) Received: from asgard (host213.190-31-126.telecom.net.ar [190.31.126.213]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.9/8.14.9) with ESMTP id s5EAutLY015088 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sat, 14 Jun 2014 10:56:57 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1402743419; bh=zQnRhmM/M3qR/UWV3e+mRKCPOw2Q27htZnpPPTVEiCE=; h=From:To:Cc:Subject:Date; b=coXs0f80cyIcFAoBdI+sMlH/aHTLugWjffiDuUW2r9yw8S62UOk4AnW1S+s5sDPrQ 9/eoNWutdb3VUJas7ZhOWL8g9/oSlWEnb4AROLfJg7eijk9hR2MJXEYPsu+YgGYL9L Wz7kcE6ZvwCaWYskZphTKUHrxfv4yPqettUMImvo= Received: by asgard (sSMTP sendmail emulation); Sat, 14 Jun 2014 07:56:49 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sat, 14 Jun 2014 07:56:48 -0300 Message-Id: <1402743408-13111-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.5.5 X-Virus-Scanned: clamav-milter 0.98.1 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] dialog: fix build failure X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net The old ncurses trick is no longer needed for this version, in fact it's harmful. Switch to proper configure options. Also disable rpath hackery since it's not required and could be problematic. Fixes: http://autobuild.buildroot.net/results/411/411f6171e972eab4486143dedbfd078136886ab0/ Signed-off-by: Gustavo Zacarias --- package/dialog/dialog.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/dialog/dialog.mk b/package/dialog/dialog.mk index 6dc9066..fb00c9c 100644 --- a/package/dialog/dialog.mk +++ b/package/dialog/dialog.mk @@ -7,9 +7,9 @@ DIALOG_VERSION = 1.2-20140219 DIALOG_SOURCE = dialog-$(DIALOG_VERSION).tgz DIALOG_SITE = ftp://invisible-island.net/dialog -DIALOG_CONF_OPT = --with-ncurses -DIALOG_CONF_ENV = ac_cv_path_NCURSES_CONFIG=true LIBS=-lncurses -DIALOG_DEPENDENCIES = ncurses +DIALOG_CONF_OPT = --with-ncurses --with-curses-dir=$(STAGING_DIR)/usr \ + --disable-rpath-hack +DIALOG_DEPENDENCIES = host-pkgconf ncurses DIALOG_LICENSE = LGPLv2.1 DIALOG_LICENSE_FILES = COPYING