Skip to content

Commit 0ede871

Browse files
committed
Fix #2618, Correct syntax for variable APP_NAME in arch_build.cmake
1 parent b878cd8 commit 0ede871

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmake/arch_build.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function(add_cfe_app APP_NAME APP_SRC_FILES)
109109
# By linking with the respective application like this, the net result is that
110110
# only the _referenced_ EDS DBs (i.e. those for loaded apps) are held in memory.
111111
if (CFE_EDS_ENABLED_BUILD AND CFE_EDS_LINK_MODE STREQUAL LOCAL)
112-
target_link_libraries($(APP_NAME) cfe_edsdb_static)
112+
target_link_libraries(${APP_NAME} cfe_edsdb_static)
113113
endif()
114114

115115
# An "install" step is only needed for dynamic/runtime loaded apps

cmake/mission_build.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# FUNCTION: initialize_globals
2323
#
2424
# Set up global mission configuration variables.
25-
# In the top level mode (this file)t reads extracts state info from
25+
# In the top level mode (this file) reads and extracts state info from
2626
# configuration files within the project source tree (the _defs directory)
2727
#
2828
function(initialize_globals)

0 commit comments

Comments
 (0)