blob: 16d69a82a4cbd90574c41116d9a5c66897947908 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001From 765e0a38cb8c40f8865af5cb356ffe6039ffb08f Mon Sep 17 00:00:00 2001
2From: Thomas Klausner <wiz@NetBSD.org>
3Date: Sun, 22 Mar 2015 21:38:23 +0100
4Subject: [PATCH 2/4] Fix quoting issue.
5
6m4 has '[]' as quoting characters, so if we want '[]' to
7end up in the configure script, we need to quote them again.
8
9Reported by Greg Troxel <gdt@ir.bbn.com>.
10
11Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
12Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
13---
14Upstream-Status: Backport
15
16 configure.ac | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/configure.ac b/configure.ac
20index 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--
332.1.4
34