aboutsummaryrefslogtreecommitdiff
path: root/Makefile.tpl
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2008-04-12 18:40:10 +0000
committerHans-Peter Nilsson <hp@axis.com>2008-04-12 18:40:10 +0000
commita5a2abce17c266f8bee7133734281df163745168 (patch)
tree33d94d653ced66cba542504f5f89425e2edca29f /Makefile.tpl
parentc4c1ef34042430defe3eac360db35f463413e64b (diff)
* Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
* Makefile.in: Regenerate. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@134225 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.tpl')
-rw-r--r--Makefile.tpl8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.tpl b/Makefile.tpl
index 95441f5bc43..e9629e2da2c 100644
--- a/Makefile.tpl
+++ b/Makefile.tpl
@@ -23,6 +23,14 @@ in
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
+# First, test for a proper version of make, but only where one is required.
+
+@if gcc
+ifeq (,$(.VARIABLES)) # The variable .VARIABLES, new with 3.80, is never empty.
+$(error GNU make version 3.80 or newer is required.)
+endif
+@endif gcc
+
# -------------------------------
# Standard Autoconf-set variables
# -------------------------------