[Nagiosplug-checkins] SF.net SVN: nagiosplug:[2100] nagiosplug/trunk/plugins

dermoth at users.sourceforge.net dermoth at users.sourceforge.net
Tue Nov 25 14:53:24 CET 2008


Revision: 2100
          http://nagiosplug.svn.sourceforge.net/nagiosplug/?rev=2100&view=rev
Author:   dermoth
Date:     2008-11-25 13:53:23 +0000 (Tue, 25 Nov 2008)

Log Message:
-----------
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.

Modified Paths:
--------------
    nagiosplug/trunk/plugins/Makefile.am
    nagiosplug/trunk/plugins-root/Makefile.am
    nagiosplug/trunk/plugins-scripts/Makefile.am

Modified: nagiosplug/trunk/plugins/Makefile.am
===================================================================
--- nagiosplug/trunk/plugins/Makefile.am	2008-11-25 05:31:18 UTC (rev 2099)
+++ nagiosplug/trunk/plugins/Makefile.am	2008-11-25 13:53:23 UTC (rev 2100)
@@ -4,7 +4,10 @@
 	@$(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
+ at am__include@ @am__quote at NP-VERSION-FILE@am__quote@
 
 AM_CFLAGS = -DNP_VERSION='"$(NP_VERSION)"'
 

Modified: nagiosplug/trunk/plugins-root/Makefile.am
===================================================================
--- nagiosplug/trunk/plugins-root/Makefile.am	2008-11-25 05:31:18 UTC (rev 2099)
+++ nagiosplug/trunk/plugins-root/Makefile.am	2008-11-25 13:53:23 UTC (rev 2100)
@@ -4,7 +4,10 @@
 	@$(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
+ at am__include@ @am__quote at NP-VERSION-FILE@am__quote@
 
 AM_CFLAGS = -DNP_VERSION='"$(NP_VERSION)"'
 

Modified: nagiosplug/trunk/plugins-scripts/Makefile.am
===================================================================
--- nagiosplug/trunk/plugins-scripts/Makefile.am	2008-11-25 05:31:18 UTC (rev 2099)
+++ nagiosplug/trunk/plugins-scripts/Makefile.am	2008-11-25 13:53:23 UTC (rev 2100)
@@ -4,7 +4,10 @@
 	@$(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
+ at am__include@ @am__quote at NP-VERSION-FILE@am__quote@
 
 SUFFIXES = .pl .sh
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Commits mailing list