From 0c34b75b05ef49a56eeb3b43b47709132d2dbedd Mon Sep 17 00:00:00 2001 From: Thomas Guyot-Sionnest Date: Tue, 25 Nov 2008 00:28:51 -0500 Subject: 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: -- cgit v0.10-9-g596f