From: Chris Sharp Date: Tue, 21 Mar 2017 16:12:32 +0000 (-0400) Subject: LP#1669868 - Fix 'make check' failure by adding additional LD flags. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3a80eb9f515e8fdd61d12979b0dec5107a9b6e51;p=working%2FEvergreen.git LP#1669868 - Fix 'make check' failure by adding additional LD flags. The 'make check' step was failing on Ubuntu 14.04. This was traced back to the need for additional LDFLAGS for the check_util and check_idl tests. Signed-off-by: Chris Sharp --- diff --git a/Open-ILS/src/c-apps/tests/Makefile.am b/Open-ILS/src/c-apps/tests/Makefile.am index 67b258d6b3..664562b944 100644 --- a/Open-ILS/src/c-apps/tests/Makefile.am +++ b/Open-ILS/src/c-apps/tests/Makefile.am @@ -11,11 +11,11 @@ check_PROGRAMS = check_util check_idl check_util_SOURCES = $(COMMON) check_util.c check_util_CFLAGS = $(AM_CFLAGS) -check_util_LDFLAGS = $(AM_LDFLAGS) -loils_idl -loils_utils -lcheck +check_util_LDFLAGS = $(AM_LDFLAGS) -loils_idl -loils_utils -lcheck -lm -lpthread -lrt check_util_DEPENDENCIES = ../liboils_idl.la ../liboils_utils.la check_idl_SOURCES = $(COMMON) check_idl.c check_idl_CFLAGS = $(AM_CFLAGS) -check_idl_LDFLAGS = $(AM_LDFLAGS) -loils_idl -loils_utils -lcheck +check_idl_LDFLAGS = $(AM_LDFLAGS) -loils_idl -loils_utils -lcheck -lm -lpthread -lrt check_idl_DEPENDENCIES = ../liboils_idl.la ../liboils_utils.la