From: Thomas Guyot-Sionnest Date: Tue, 25 Nov 2008 05:28:51 +0000 (-0500) Subject: Exporting ENV vars from Makefile is supported only with GNU Make. Use the shell instead. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0c34b75b05ef49a56eeb3b43b47709132d2dbedd;p=nagiosplug.git Exporting ENV vars from Makefile is supported only with GNU Make. Use the shell instead. --- diff --git a/plugins-scripts/Makefile.am b/plugins-scripts/Makefile.am index 4c94f2c..897c724 100644 --- a/plugins-scripts/Makefile.am +++ b/plugins-scripts/Makefile.am @@ -6,8 +6,6 @@ NP-VERSION-FILE: .FORCE-NP-VERSION-FILE -include NP-VERSION-FILE -export NP_VERSION:= $(NP_VERSION) - SUFFIXES = .pl .sh VPATH=$(top_srcdir) $(top_srcdir)/plugins-scripts $(top_srcdir)/plugins-scripts/t @@ -39,11 +37,11 @@ test-debug: CLEANFILES=$(libexec_SCRIPTS) .pl : - $(AWK) -f ./subst $< > $@ + NP_VERSION=$(NP_VERSION) $(AWK) -f ./subst $< > $@ chmod +x $@ .sh : - $(AWK) -f ./subst $< > $@ + NP_VERSION=$(NP_VERSION) $(AWK) -f ./subst $< > $@ chmod +x $@ clean-local: