summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWan-Teh Chang <wtc@google.com>2013-03-14 12:34:47 -0700
committerWan-Teh Chang <wtc@google.com>2013-03-14 12:34:47 -0700
commit07333e884be68fe9cdbf4e093ea7c923c49df1f0 (patch)
treec79579d5fc8e87958e3acc74bad07a2914f925ef
parentfbbb97024e50024719950f125849f7e583cc6dd5 (diff)
downloadnspr-hg-07333e884be68fe9cdbf4e093ea7c923c49df1f0.tar.gz
Bug 849089: Quote the AC_CHECK_HEADER call for dlfcn.h. r=ted.
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 87d9278a..8f70cc0a 100644
--- a/configure.in
+++ b/configure.in
@@ -2553,8 +2553,8 @@ case $target in
;;
*)
AC_CHECK_LIB(dl, dlopen,
- AC_CHECK_HEADER(dlfcn.h,
- OS_LIBS="-ldl $OS_LIBS"))
+ [AC_CHECK_HEADER(dlfcn.h,
+ OS_LIBS="-ldl $OS_LIBS")])
;;
esac