[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[sr #110319] autoconf incompatible change not fixed by autoupdate
From: |
Per Bothner |
Subject: |
[sr #110319] autoconf incompatible change not fixed by autoupdate |
Date: |
Fri, 25 Sep 2020 16:21:44 -0400 (EDT) |
User-agent: |
Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:80.0) Gecko/20100101 Firefox/80.0 |
URL:
<https://savannah.gnu.org/support/?110319>
Summary: autoconf incompatible change not fixed by autoupdate
Project: Autoconf
Submitted by: bothner
Submitted on: Fri 25 Sep 2020 08:21:43 PM UTC
Category: None
Priority: 5 - Normal
Severity: 3 - Normal
Status: None
Privacy: Public
Assigned to: None
Originator Email:
Open/Closed: Open
Discussion Lock: Any
Operating System: GNU/Linux
_______________________________________________________
Details:
The following works with 2.69, but breaks with 2.69c:
AS_IF([test -z "$with_asciidoctor"],
AC_CHECK_PROG(with_asciidoctor, asciidoctor, "yes", "no"))
Adding brackets seems to work:
AS_IF([test -z "$with_asciidoctor"],
[AC_CHECK_PROG(with_asciidoctor, asciidoctor, "yes", "no")])
Autoupdate does not deal with this case.
_______________________________________________________
Reply to this item at:
<https://savannah.gnu.org/support/?110319>
_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/
- [sr #110319] autoconf incompatible change not fixed by autoupdate,
Per Bothner <=