diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-01-21 03:28:30 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-01-21 03:28:30 (GMT) |
commit | 26bf63a5bba0fae77033693030c75eace202f988 (patch) | |
tree | 53f649ca17482518e5afdd0f85f53a11b8572573 | |
parent | 948cf21aaeb341687105dc4b050378b796bd4afc (diff) | |
download | monitoring-plugins-26bf63a5bba0fae77033693030c75eace202f988.tar.gz |
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.
-rw-r--r-- | lib/tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
13 | np_test_files = config-dos.ini config-opts.ini config-tiny.ini plugin.ini plugins.ini | 13 | np_test_files = config-dos.ini config-opts.ini config-tiny.ini plugin.ini plugins.ini |
14 | EXTRA_DIST = $(np_test_scripts) $(np_test_files) | 14 | EXTRA_DIST = $(np_test_scripts) $(np_test_files) |
15 | 15 | ||
16 | LIBS = @LIBINTL@ | 16 | LIBS = @LTLIBINTL@ |
17 | 17 | ||
18 | if USE_LIBTAP_LOCAL | 18 | if USE_LIBTAP_LOCAL |
19 | tap_cflags = -I$(top_srcdir)/tap | 19 | tap_cflags = -I$(top_srcdir)/tap |