From 3a80eb9f515e8fdd61d12979b0dec5107a9b6e51 Mon Sep 17 00:00:00 2001 From: Chris Sharp Date: Tue, 21 Mar 2017 12:12:32 -0400 Subject: [PATCH] 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 --- Open-ILS/src/c-apps/tests/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.11.0