From: Thomas Guyot-Sionnest Date: Wed, 21 Jan 2009 03:28:30 +0000 (-0500) Subject: Fix (or try at least) for IRIX compile to tap tests X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=26bf63a5bba0fae77033693030c75eace202f988;p=nagiosplug.git Fix (or try at least) for IRIX compile to tap tests Gnulib says: "$(LTLIBINTL) when linking with libtool, $(LIBINTL) otherwise" Everywhere else we use LTLIBINTL so I assume the tests should use it as well. --- diff --git a/lib/tests/Makefile.am b/lib/tests/Makefile.am index 1b036fe..a59a653 100644 --- a/lib/tests/Makefile.am +++ b/lib/tests/Makefile.am @@ -13,7 +13,7 @@ np_test_scripts = test_base64.t test_cmd.t test_disk.t test_ini.t test_opts.t te np_test_files = config-dos.ini config-opts.ini config-tiny.ini plugin.ini plugins.ini EXTRA_DIST = $(np_test_scripts) $(np_test_files) -LIBS = @LIBINTL@ +LIBS = @LTLIBINTL@ if USE_LIBTAP_LOCAL tap_cflags = -I$(top_srcdir)/tap