Bug 57653
| Summary: | 2.52x stricter on underquoting | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Retired] Red Hat Raw Hide | Reporter: | vvs <vvs009> | ||||
| Component: | autoconf | Assignee: | Jens Petersen <petersen> | ||||
| Status: | CLOSED NOTABUG | QA Contact: | Brian Brock <bbrock> | ||||
| Severity: | medium | Docs Contact: | |||||
| Priority: | medium | ||||||
| Version: | 1.0 | ||||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | i386 | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2001-12-19 05:30:44 UTC | Type: | --- | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
|
Description
vvs
2001-12-18 10:29:30 UTC
Created attachment 40888 [details]
autoconf template file
Reproduced. This seems to be a bug in the development version which unfortunately has crept into rawhide. Perhaps I will revert it to the 2.52 release. On second thoughts. Your example is a case of "underquoting".
The macro calls need to be quoted properly for safe expansion (see "Autoconf
Language" in the autoconf manual).
eg like this:
AC_CHECK_LIB(z, gzsetparams,
[AC_CHECK_HEADER(zlib.h,,[AC_MSG_ERROR(zlib headers not found)])],
[AC_MSG_ERROR(zlib library not found)])
The fact that this worked under 2.52 and 2.13 was just pure luck and should not
be relied on.
|