summaryrefslogtreecommitdiff
path: root/Makefile.tpl
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2008-04-12 18:53:52 +0000
committerHans-Peter Nilsson <hp@axis.com>2008-04-12 18:53:52 +0000
commit433f1f8930f83e5231e072926e4e81d4f3389495 (patch)
tree988150846244b38fb6d74f37511d18fbca45e687 /Makefile.tpl
parent467078e9468eab6e8a5263142ea42a7f26ec3741 (diff)
downloadgdb-433f1f8930f83e5231e072926e4e81d4f3389495.tar.gz
* Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
* Makefile.in: Regenerate.
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
# -------------------------------