Skip to content

Commit b2328b7

Browse files
committed
depends: boost: Remove unnecessary _archiver_
We already have $(package)_ar, so just use that instead
1 parent ab9e047 commit b2328b7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

depends/packages/boost.mk

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,14 @@ $(package)_toolset_$(host_os)=clang
2222
else
2323
$(package)_toolset_$(host_os)=gcc
2424
endif
25-
$(package)_archiver_$(host_os)=$($(package)_ar)
2625
$(package)_config_libraries=filesystem,system,thread,test
2726
$(package)_cxxflags=-std=c++11 -fvisibility=hidden
2827
$(package)_cxxflags_linux=-fPIC
2928
$(package)_cxxflags_android=-fPIC
3029
endef
3130

3231
define $(package)_preprocess_cmds
33-
echo "using $($(package)_toolset_$(host_os)) : : $($(package)_cxx) : <cxxflags>\"$($(package)_cxxflags) $($(package)_cppflags)\" <linkflags>\"$($(package)_ldflags)\" <archiver>\"$($(package)_archiver_$(host_os))\" <striper>\"$(host_STRIP)\" <ranlib>\"$(host_RANLIB)\" <rc>\"$(host_WINDRES)\" : ;" > user-config.jam
32+
echo "using $($(package)_toolset_$(host_os)) : : $($(package)_cxx) : <cxxflags>\"$($(package)_cxxflags) $($(package)_cppflags)\" <linkflags>\"$($(package)_ldflags)\" <archiver>\"$($(package)_ar)\" <striper>\"$(host_STRIP)\" <ranlib>\"$(host_RANLIB)\" <rc>\"$(host_WINDRES)\" : ;" > user-config.jam
3433
endef
3534

3635
define $(package)_config_cmds

0 commit comments

Comments
 (0)