diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-07-18 15:58:02 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-07-18 17:13:50 +0100 |
commit | 6fdc13c61f0e5ef6be0c03fa475741ab2cd57672 (patch) | |
tree | 2811f60132950d2d0904854d07a460390f082a01 /depends | |
parent | f002f8a0e76bd5abd60ef6809b1ff2b4c2d56071 (diff) |
build: Fix autoconf variable names for tools found by `AC_PATH_TOOL`
See the `AC_PATH_TOOL` macro implementation.
Diffstat (limited to 'depends')
-rw-r--r-- | depends/config.site.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/depends/config.site.in b/depends/config.site.in index 189330c42d..f7e770343c 100644 --- a/depends/config.site.in +++ b/depends/config.site.in @@ -105,7 +105,7 @@ PYTHONPATH="${depends_prefix}/native/lib/python3/dist-packages${PYTHONPATH:+${PA if test -n "@AR@"; then AR="@AR@" - ac_cv_path_ac_pt_AR="${AR}" + ac_cv_path_AR="${AR}" fi if test -n "@RANLIB@"; then @@ -126,17 +126,17 @@ fi if test "@host_os@" = darwin; then if test -n "@OTOOL@"; then OTOOL="@OTOOL@" - ac_cv_path_ac_pt_OTOOL="${OTOOL}" + ac_cv_path_OTOOL="${OTOOL}" fi if test -n "@INSTALL_NAME_TOOL@"; then INSTALL_NAME_TOOL="@INSTALL_NAME_TOOL@" - ac_cv_path_ac_pt_INSTALL_NAME_TOOL="${INSTALL_NAME_TOOL}" + ac_cv_path_INSTALL_NAME_TOOL="${INSTALL_NAME_TOOL}" fi if test -n "@DSYMUTIL@"; then DSYMUTIL="@DSYMUTIL@" - ac_cv_path_ac_pt_DSYMUTIL="${DSYMUTIL}" + ac_cv_path_DSYMUTIL="${DSYMUTIL}" fi fi |