[sr-dev] git:master: make: required version is now 3.81

Andrei Pelinescu-Onciul andrei at iptel.org
Mon Jun 1 12:42:18 CEST 2009


Module: sip-router
Branch: master
Commit: e2a88d5b3a00bab7994174b7f37569d85774d997
URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=e2a88d5b3a00bab7994174b7f37569d85774d997

Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date:   Mon Jun  1 12:41:01 2009 +0200

make: required version is now 3.81

Updated required gnu make version from 3.80 to 3.81, because 3.80
has a bug when dealing with eval inside ifeq/endif
(see
https://savannah.gnu.org/bugs/index.php?func=detailitem&item_id=1516)).
It can be reverted back to 3.80, once workarounds are in place.

---

 Makefile |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index ca97f78..7e0e197 100644
--- a/Makefile
+++ b/Makefile
@@ -65,8 +65,10 @@
 #
 
 # check make version
-# required 3.80, recommended 3.81
-req_ver=3.80
+# everything works with 3.80, except evals inside ifeq/endif
+# (see https://savannah.gnu.org/bugs/index.php?func=detailitem&item_id=1516).
+# recommended 3.81
+req_ver=3.81
 # the check below works for version number of the type x.yy or x.yy.z*
 # (from the GNU Make Cookbook)
 ifeq (,$(filter $(req_ver),$(firstword $(sort $(MAKE_VERSION) $(req_ver)))))




More information about the sr-dev mailing list