Commit | Line | Data |
---|---|---|
742845df VM |
1 | From 2b86e9b4664fd43622e2cd5ab47713a818758970 Mon Sep 17 00:00:00 2001 |
2 | From: Tollef Fog Heen <tfheen@err.no> | |
3 | Date: Thu, 19 Aug 2010 06:54:09 +0000 | |
4 | Subject: Add some []s before dnl | |
5 | ||
6 | Autoconf 2.66 has some problems with missing []s before dnls, causing | |
7 | the expanded text to be garbled. | |
8 | ||
9 | Fixes #29056 | |
10 | --- | |
11 | diff --git a/pkg.m4 b/pkg.m4 | |
12 | index 9bb3e06..31169b4 100644 | |
13 | --- a/pkg.m4 | |
14 | +++ b/pkg.m4 | |
15 | @@ -135,7 +135,7 @@ $$1_PKG_ERRORS | |
16 | Consider adjusting the PKG_CONFIG_PATH environment variable if you | |
17 | installed software in a non-standard prefix. | |
18 | ||
19 | -_PKG_TEXT])dnl | |
20 | +_PKG_TEXT])[]dnl | |
21 | ]) | |
22 | elif test $pkg_failed = untried; then | |
23 | AC_MSG_RESULT([no]) | |
24 | @@ -146,7 +146,7 @@ path to pkg-config. | |
25 | ||
26 | _PKG_TEXT | |
27 | ||
28 | -To get pkg-config, see <http://pkg-config.freedesktop.org/>.])dnl | |
29 | +To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl | |
30 | ]) | |
31 | else | |
32 | $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS | |
33 | -- | |
34 | cgit v0.8.3-6-g21f6 | |
35 |