summaryrefslogtreecommitdiff
path: root/lib/am
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2013-05-22 23:42:09 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2013-05-22 23:55:35 +0200
commitf2a1ef46193a8d1bccbb9c4b9e92b644bdb83add (patch)
treec68f2e55a497561204b6bde7d47da49bd14fc8e6 /lib/am
parentc8e1373ff89f7420bded109acb3c4c14ab45345b (diff)
downloadautomake-f2a1ef46193a8d1bccbb9c4b9e92b644bdb83add.tar.gz
comments: next GNU make release 4.0, not 3.83
See: <http://lists.gnu.org/archive/html/bug-make/2013-05/msg00093.html> * lib/am/header-vars.am (am__make_running_with_option): Adjust comments. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'lib/am')
-rw-r--r--lib/am/header-vars.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/am/header-vars.am b/lib/am/header-vars.am
index 1a6f28eb3..d25efa612 100644
--- a/lib/am/header-vars.am
+++ b/lib/am/header-vars.am
@@ -74,7 +74,7 @@ am__make_running_with_option = \
case $$flg in \
*=*|--*) continue;; \
##
-## GNU make 3.83 has changed the format of $MFLAGS, and removed the space
+## GNU make 4.0 has changed the format of $MFLAGS, and removed the space
## between an option and its argument (e.g., from "-I dir" to "-Idir").
## So we need to handle both formats, at least for options valid in GNU
## make. OTOH, BSD make formats $(MAKEFLAGS) by separating all options,
@@ -84,7 +84,7 @@ am__make_running_with_option = \
## For GNU make and BSD make.
-*I) strip_trailopt 'I'; skip_next=yes;; \
-*I?*) strip_trailopt 'I';; \
-## For GNU make >= 3.83.
+## For GNU make >= 4.0.
-*O) strip_trailopt 'O'; skip_next=yes;; \
-*O?*) strip_trailopt 'O';; \
## For GNU make (possibly overkill, this one).