Skip to content

Commit 091ae4a

Browse files
BushstarFuzzbawls
authored andcommitted
depends: Consistent use of package variable
All other mk files use the package variable consistently except for the two instances here, which have always been here, since depends was introduced in 0.10.
1 parent 635bdc1 commit 091ae4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

depends/packages/boost.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ $(package)_cxxflags_linux=-fPIC
2828
endef
2929

3030
define $(package)_preprocess_cmds
31-
echo "using $(boost_toolset_$(host_os)) : : $($(package)_cxx) : <cxxflags>\"$($(package)_cxxflags) $($(package)_cppflags)\" <linkflags>\"$($(package)_ldflags)\" <archiver>\"$(boost_archiver_$(host_os))\" <striper>\"$(host_STRIP)\" <ranlib>\"$(host_RANLIB)\" <rc>\"$(host_WINDRES)\" : ;" > user-config.jam
31+
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
3232
endef
3333

3434
define $(package)_config_cmds
35-
./bootstrap.sh --without-icu --with-libraries=$(boost_config_libraries)
35+
./bootstrap.sh --without-icu --with-libraries=$($(package)_config_libraries)
3636
endef
3737

3838
define $(package)_build_cmds

0 commit comments

Comments
 (0)