summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2018-03-15 18:09:58 -0300
committerJames Almer <jamrial@gmail.com>2018-03-15 18:09:58 -0300
commit3c56d6734186336723150d3bcaf3405538710c53 (patch)
tree70f28d075d30e44abec0d16c164ac070435bf067
parent9a15af48284b951701b7e6b9dcc81b4212c6ca95 (diff)
parent8c893aa3cd5f2d73896c72af330dcbfe299fbc5a (diff)
Merge commit '8c893aa3cd5f2d73896c72af330dcbfe299fbc5a'
* commit '8c893aa3cd5f2d73896c72af330dcbfe299fbc5a': configure: Drop unnecessary variables, shifts, and quotes in helper functions Merged-by: James Almer <jamrial@gmail.com>
-rwxr-xr-xconfigure15
1 files changed, 5 insertions, 10 deletions
diff --git a/configure b/configure
index 5e38bdab17..dad19f0106 100755
--- a/configure
+++ b/configure
@@ -999,7 +999,7 @@ EOF
check_insn(){
log check_insn "$@"
- check_inline_asm ${1}_inline "\"$2\""
+ check_inline_asm ${1}_inline "$2"
echo "$2" | check_as && enable ${1}_external || disable ${1}_external
}
@@ -1386,10 +1386,8 @@ require(){
log require "$@"
name_version="$1"
name="${1%% *}"
- headers="$2"
- func="$3"
- shift 3
- check_lib $name "$headers" $func "$@" || die "ERROR: $name_version not found"
+ shift
+ check_lib $name "$@" || die "ERROR: $name_version not found"
}
require_cpp(){
@@ -1403,16 +1401,13 @@ require_cpp(){
require_header(){
log require_header "$@"
headers="$1"
- shift
- check_header "$headers" "$@" || die "ERROR: $headers not found"
+ check_header "$@" || die "ERROR: $headers not found"
}
require_cpp_condition(){
log require_cpp_condition "$@"
- header="$1"
condition="$2"
- shift 2
- check_cpp_condition "$header" "$condition" "$@" || die "ERROR: $condition not satisfied"
+ check_cpp_condition "$@" || die "ERROR: $condition not satisfied"
}
require_pkg_config(){