build: No need to provide defaults for darwin-specific tools

This commit is contained in:
Hennadii Stepanov 2022-04-15 18:52:46 +02:00
parent 80cd99322f
commit f87594da14
No known key found for this signature in database
GPG Key ID: 410108112E7EA81F
2 changed files with 0 additions and 4 deletions

View File

@ -5,8 +5,6 @@ default_build_TAR = tar
default_build_RANLIB = ranlib
default_build_STRIP = strip
default_build_NM = nm
default_build_OTOOL = otool
default_build_INSTALL_NAME_TOOL = install_name_tool
define add_build_tool_func
build_$(build_os)_$1 ?= $$(default_build_$1)

View File

@ -8,8 +8,6 @@ default_host_AR = $(host_toolchain)ar
default_host_RANLIB = $(host_toolchain)ranlib
default_host_STRIP = $(host_toolchain)strip
default_host_LIBTOOL = $(host_toolchain)libtool
default_host_INSTALL_NAME_TOOL = $(host_toolchain)install_name_tool
default_host_OTOOL = $(host_toolchain)otool
default_host_NM = $(host_toolchain)nm
define add_host_tool_func