Add missing dependency for XML generation #2044
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Change Description
The
codegen.py
utility depends on in-source generated filesAutocoders/Python/src/fprime_ac/generators/templates/**/**.py
. However, when generating topology XML files likeTopologyAppDictionary
, this dependency is not present. This PR adds the dependency.There's also a duplicate dependency on
${AC_INPUT_FILE}
so I removed one occurrence.Rationale
I was not able to build the Ref app of devel branch with fpp devel branch with error:
I bisected the first commit of fpp with which tne build fails, but it doesn't seem fishy: nasa/fpp@d1d14ae
Future Work