File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Development Build: equuleus-rc1+dev79
4
+ - Relative prefix exclusion for cfe implementation file search
5
+ - See < https://github.com/nasa/cFE/pull/2494 >
6
+
3
7
## Development Build: equuleus-rc1+dev71
4
8
- updating cFE to use new versioning system
5
9
- clean up and move table build scripts
Original file line number Diff line number Diff line change @@ -54,10 +54,13 @@ function(cfe_locate_implementation_file OUTPUT_VAR FILE_NAME)
54
54
foreach (BASEDIR ${IMPL_SEARCH_BASEDIRS} )
55
55
list (APPEND IMPL_SEARCH_PATH "${BASEDIR}${FILE_NAME} " )
56
56
57
+ # Get relative directory
58
+ string (REPLACE ${MISSION_SOURCE_DIR} "" RELATIVEDIR ${BASEDIR} )
59
+
57
60
# A target-specific prefixed filename gets priority over a direct filename match
58
- # But do not include this variant if the prefix is already part of the basedir
61
+ # But do not include this variant if the prefix is already part of the relative search path
59
62
foreach (PREFIX ${LOCATEIMPL_ARG_PREFIX} )
60
- if (NOT "${BASEDIR } " MATCHES "/${PREFIX} /" )
63
+ if (NOT "${RELATIVEDIR } " MATCHES "/${PREFIX} /" )
61
64
list (APPEND IMPL_SEARCH_PATH "${BASEDIR}${PREFIX} _${FILE_NAME} " )
62
65
endif ()
63
66
endforeach ()
Original file line number Diff line number Diff line change 26
26
#define CFE_VERSION_H
27
27
28
28
/* Development Build Macro Definitions */
29
- #define CFE_BUILD_NUMBER 75 /**< @brief Development: Number of development git commits since CFE_BUILD_BASELINE */
29
+ #define CFE_BUILD_NUMBER 79 /**< @brief Development: Number of development git commits since CFE_BUILD_BASELINE */
30
30
#define CFE_BUILD_BASELINE "equuleus-rc1" /**< @brief Development: Reference git tag for build number */
31
31
#define CFE_BUILD_DEV_CYCLE "equuleus-rc2" /**< @brief Development: Release name for current development cycle */
32
32
#define CFE_BUILD_CODENAME "Equuleus" /**< @brief: Development: Code name for the current build */
You can’t perform that action at this time.
0 commit comments