Browse Source

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.
Andrei Pelinescu-Onciul 16 years ago
parent
commit
e2a88d5b3a
1 changed files with 4 additions and 2 deletions
  1. 4 2
      Makefile

+ 4 - 2
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)))))