diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2008-11-25 00:33:23 -0500 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2008-11-25 08:50:35 -0500 |
commit | ed9a088b37dcb8ba56d397592f4e8230a6a011e5 (patch) | |
tree | da91cdd5a73ede96d8eb763fbbe0ffee9845d268 /plugins-scripts | |
parent | 0c34b75b05ef49a56eeb3b43b47709132d2dbedd (diff) | |
download | monitoring-plugins-ed9a088b37dcb8ba56d397592f4e8230a6a011e5.tar.gz |
Workaround to support more make programs
Avoid the use of "-include". Since "include" is interpreted by Automake, we have to use a special macro instead.
Diffstat (limited to 'plugins-scripts')
-rw-r--r-- | plugins-scripts/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins-scripts/Makefile.am b/plugins-scripts/Makefile.am index 897c724a..19702739 100644 --- a/plugins-scripts/Makefile.am +++ b/plugins-scripts/Makefile.am @@ -4,7 +4,10 @@ NP-VERSION-FILE: .FORCE-NP-VERSION-FILE @$(SHELL_PATH) $(top_srcdir)/NP-VERSION-GEN .FORCE-NP-VERSION-FILE: --include NP-VERSION-FILE +## This is undocumented and could possibly break in future versions of +## automake. See: +## http://article.gmane.org/gmane.comp.sysutils.automake.general/10036 +@am__include@ @am__quote@NP-VERSION-FILE@am__quote@ SUFFIXES = .pl .sh |