From patchwork Fri May 1 09:23:30 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicolas Iooss X-Patchwork-Id: 11522347 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id D68F614B4 for ; Fri, 1 May 2020 09:23:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C79812173E for ; Fri, 1 May 2020 09:23:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728576AbgEAJXh (ORCPT ); Fri, 1 May 2020 05:23:37 -0400 Received: from mx1.polytechnique.org ([129.104.30.34]:39258 "EHLO mx1.polytechnique.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728236AbgEAJXg (ORCPT ); Fri, 1 May 2020 05:23:36 -0400 Received: from localhost.localdomain (85-168-38-217.rev.numericable.fr [85.168.38.217]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ssl.polytechnique.org (Postfix) with ESMTPSA id A4C8C5649B5 for ; Fri, 1 May 2020 11:23:34 +0200 (CEST) From: Nicolas Iooss To: selinux@vger.kernel.org Subject: [PATCH] libsepol/tests: drop ncurses dependency Date: Fri, 1 May 2020 11:23:30 +0200 Message-Id: <20200501092330.1129016-1-nicolas.iooss@m4x.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 X-AV-Checked: ClamAV using ClamSMTP at svoboda.polytechnique.org (Fri May 1 11:23:34 2020 +0200 (CEST)) X-Spam-Flag: No, tests=bogofilter, spamicity=0.000000, queueID=E5BE65649B6 X-Org-Mail: nicolas.iooss.2010@polytechnique.org Sender: selinux-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: selinux@vger.kernel.org ncurses library is not used anywhere. Signed-off-by: Nicolas Iooss Acked-by: James Carter --- .travis.yml | 1 - libsepol/tests/Makefile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 918958acfc80..4361d26cbb83 100644 --- a/.travis.yml +++ b/.travis.yml @@ -53,7 +53,6 @@ addons: - libcap-ng-dev # This package is not whitelisted for the container infrastructure (https://github.com/travis-ci/apt-package-whitelist/issues/1096) - libcunit1-dev - libdbus-glib-1-dev - - libncurses5-dev - libpcre3-dev - patch - python3-dev diff --git a/libsepol/tests/Makefile b/libsepol/tests/Makefile index e7e305e8150b..fc9bd1a303be 100644 --- a/libsepol/tests/Makefile +++ b/libsepol/tests/Makefile @@ -32,7 +32,7 @@ all: $(EXE) $(policies) policies: $(policies) $(EXE): $(objs) $(parserobjs) $(LIBSEPOL) - $(CC) $(LDFLAGS) $(objs) $(parserobjs) -lcunit -lcurses $(LIBSEPOL) -o $@ + $(CC) $(LDFLAGS) $(objs) $(parserobjs) -lcunit $(LIBSEPOL) -o $@ %.conf.std: $(m4support) %.conf $(M4) $(M4PARAMS) $^ > $@