diff --git a/CHANGELOG.md b/CHANGELOG.md index a1e3a9ab..787b24b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Don't define `ostream& operator<<(nullptr_t)` if already defined by Apple - `CppLibrary.in_tests_dir?` no longer produces an error if there is no tests directory - The definition of the `_SFR_IO8` macro no longer produces errors about rvalues +- Typo in `cpp_library.rb`, misspelling of `aux_libraries` ### Deprecated - `arduino_ci_remote.rb` CLI switch `--skip-compilation` diff --git a/lib/arduino_ci/cpp_library.rb b/lib/arduino_ci/cpp_library.rb index ea3d62eb..d5634ca3 100644 --- a/lib/arduino_ci/cpp_library.rb +++ b/lib/arduino_ci/cpp_library.rb @@ -410,7 +410,7 @@ def build_for_test_with_configuration(test_file, aux_libraries, gcc_binary, ci_g # combine library.properties defs (if existing) with config file. # TODO: as much as I'd like to rely only on the properties file(s), I think that would prevent testing 1.0-spec libs - full_aux_libraries = arduino_library_dependencies.nil? ? aux_libraries : aux_libaries + arduino_library_dependencies + full_aux_libraries = arduino_library_dependencies.nil? ? aux_libraries : aux_libraries + arduino_library_dependencies arg_sets << test_args(full_aux_libraries, ci_gcc_config) arg_sets << cpp_files_libraries(full_aux_libraries).map(&:to_s) arg_sets << [test_file.to_s]