From: Pavel Hrdina Date: Wed, 24 Jun 2020 09:25:58 +0000 (+0200) Subject: src: util: Makefile: drop undefined OPENPTY_LIBS X-Git-Tag: v6.6.0-rc1~172 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d4e0b5c00d6cb4e7d64457389b535a1af966b8f;p=thirdparty%2Flibvirt.git src: util: Makefile: drop undefined OPENPTY_LIBS Commit added check for openpty function from util library using AC_CHECK_LIB(). However, that macro doesn't define OPENPTY_LIBS, it only defines WITH_LIBUTIL and prepends -lutil into LIBS for the whole project. Signed-off-by: Pavel Hrdina Reviewed-by: Ján Tomko Reviewed-by: Michal Privoznik --- diff --git a/src/util/Makefile.inc.am b/src/util/Makefile.inc.am index 5203fa28d4..eca7e7e0a1 100644 --- a/src/util/Makefile.inc.am +++ b/src/util/Makefile.inc.am @@ -281,7 +281,6 @@ libvirt_util_la_CFLAGS = \ $(NULL) libvirt_util_la_LIBADD = \ -lm \ - $(OPENPTY_LIBS) \ $(CAPNG_LIBS) \ $(YAJL_LIBS) \ $(LIBNL_LIBS) \