Skip to content

Commit 58be87e

Browse files
authored
Merge pull request #213 from jgfoster/aux_libraries
Fix typo in `aux_libraries` name
2 parents 2c20e0e + 2b6d969 commit 58be87e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3030
- Don't define `ostream& operator<<(nullptr_t)` if already defined by Apple
3131
- `CppLibrary.in_tests_dir?` no longer produces an error if there is no tests directory
3232
- The definition of the `_SFR_IO8` macro no longer produces errors about rvalues
33+
- Typo in `cpp_library.rb`, misspelling of `aux_libraries`
3334

3435
### Deprecated
3536
- `arduino_ci_remote.rb` CLI switch `--skip-compilation`

lib/arduino_ci/cpp_library.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def build_for_test_with_configuration(test_file, aux_libraries, gcc_binary, ci_g
410410

411411
# combine library.properties defs (if existing) with config file.
412412
# 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
413-
full_aux_libraries = arduino_library_dependencies.nil? ? aux_libraries : aux_libaries + arduino_library_dependencies
413+
full_aux_libraries = arduino_library_dependencies.nil? ? aux_libraries : aux_libraries + arduino_library_dependencies
414414
arg_sets << test_args(full_aux_libraries, ci_gcc_config)
415415
arg_sets << cpp_files_libraries(full_aux_libraries).map(&:to_s)
416416
arg_sets << [test_file.to_s]

0 commit comments

Comments
 (0)