diff options
author | Jason Evans <jasone@canonware.com> | 2015-01-26 04:15:13 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2015-01-26 04:15:13 (GMT) |
commit | 41f2e692f664da683ae694b17630f5e186aa454c (patch) | |
tree | 613417d5848e76395ecb5cde551cb5f7a7ff2af3 /configure.ac | |
parent | 0fd663e9c5336089a98e8a2a0cf5419b534f045f (diff) | |
download | jemalloc-41f2e692f664da683ae694b17630f5e186aa454c.zip jemalloc-41f2e692f664da683ae694b17630f5e186aa454c.tar.gz jemalloc-41f2e692f664da683ae694b17630f5e186aa454c.tar.bz2 |
Fix quoting for CONFIG-related sed expression.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5e93a5d..4c20259 100644 --- a/configure.ac +++ b/configure.ac @@ -43,7 +43,7 @@ AC_CACHE_CHECK([whether $1 is compilable], dnl ============================================================================ -CONFIG=`echo ${ac_configure_args} | sed -e "s#\'\([^ ]*\)\'#\1#g"` +CONFIG=`echo ${ac_configure_args} | sed -e 's#'"'"'\([^ ]*\)'"'"'#\1#g'` AC_SUBST([CONFIG]) dnl Library revision. |