Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame^] | 1 | From 765e0a38cb8c40f8865af5cb356ffe6039ffb08f Mon Sep 17 00:00:00 2001 |
| 2 | From: Thomas Klausner <wiz@NetBSD.org> |
| 3 | Date: Sun, 22 Mar 2015 21:38:23 +0100 |
| 4 | Subject: [PATCH 2/4] Fix quoting issue. |
| 5 | |
| 6 | m4 has '[]' as quoting characters, so if we want '[]' to |
| 7 | end up in the configure script, we need to quote them again. |
| 8 | |
| 9 | Reported by Greg Troxel <gdt@ir.bbn.com>. |
| 10 | |
| 11 | Signed-off-by: Thomas Klausner <wiz@NetBSD.org> |
| 12 | Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> |
| 13 | --- |
| 14 | Upstream-Status: Backport |
| 15 | |
| 16 | configure.ac | 2 +- |
| 17 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 18 | |
| 19 | diff --git a/configure.ac b/configure.ac |
| 20 | index e67e9e1..888330b 100644 |
| 21 | --- a/configure.ac |
| 22 | +++ b/configure.ac |
| 23 | @@ -76,7 +76,7 @@ case $host_os in |
| 24 | ;; |
| 25 | *netbsd*) |
| 26 | case $host in |
| 27 | - *i[3-9]86*) |
| 28 | + *i[[3-9]]86*) |
| 29 | PCIACCESS_LIBS="$PCIACCESS_LIBS -li386" |
| 30 | ;; |
| 31 | *x86_64*|*amd64*) |
| 32 | -- |
| 33 | 2.1.4 |
| 34 | |