From 574a15b9835110360900fd1fb14eb65abd5c7c43 Mon Sep 17 00:00:00 2001 From: Nicolas Iooss Date: Fri, 1 May 2020 11:23:30 +0200 Subject: [PATCH] libsepol/tests: drop ncurses dependency 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 918958ac..4361d26c 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 e7e305e8..fc9bd1a3 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) $^ > $@