Bump for acr-0.10 and drop backslash in + regex

This commit is contained in:
pancake 2016-02-27 10:37:10 +01:00
parent b0fcdb386e
commit 1d4b7156db

6
configure vendored
View File

@ -1,5 +1,5 @@
#!/bin/sh
# This script was automatically generated by ACR v0.9.9
# This script was automatically generated by ACR v0.10.0
# @author: pancake <nopcode.org>
# @url: http://www.nopcode.org
# @repo: git clone https://github.com/radare/acr
@ -204,7 +204,7 @@ take_environ() {
}
show_version() {
echo "radare2-0.10.0-git configuration script done with acr v0.9.9.
echo "radare2-0.10.0-git configuration script done with acr v0.10.0.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <nopcode.org>."
exit 0
@ -374,7 +374,7 @@ VAR=$1
S="$"
_REQUIRED=$3
_CHKLIB_NAME=$2
_CHKLIB_LIBS=$(echo "-l${_CHKLIB_NAME}" | sed 's,\+, -l,g')
_CHKLIB_LIBS=$(echo "-l${_CHKLIB_NAME}" | sed 's,+, -l,g')
printf "checking for lib${_CHKLIB_NAME} ... "
echo "int main(int ac, char **av){return 0;}" > test.c
eval ${S}${COMPILER} ${CFLAGS} ${CPPFLAGS} ${CXXFLAGS} ${LDFLAGS} ${_CHKLIB_LIBS} test.c >/dev/null 2>&1