* Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
* Makefile.in: Regenerate.
This commit is contained in:
parent
3def0f969e
commit
a7ff2096f7
|
@ -1,3 +1,8 @@
|
|||
2008-04-12 Hans-Peter Nilsson <hp@axis.com>
|
||||
|
||||
* Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
|
||||
* Makefile.in: Regenerate.
|
||||
|
||||
2008-04-07 Ian Lance Taylor <iant@google.com>
|
||||
|
||||
* Makefile.def: check-gold depends upon all-binutils.
|
||||
|
|
|
@ -20,6 +20,14 @@
|
|||
# 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
|
||||
# -------------------------------
|
||||
|
|
|
@ -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
|
||||
# -------------------------------
|
||||
|
|
Loading…
Reference in New Issue