Skip to content

Commit

Permalink
base: Upadate install-functions.sh.
Browse files Browse the repository at this point in the history
- It was observed that some IOC need to instance
  their own directory in the RELEASE file, for this reason the "dependency_name"
  is being added before get_module_path in the install_module() function.
  • Loading branch information
guirodrigueslima committed Aug 13, 2024
1 parent ffd1694 commit a6c9d3e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions base/install-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ install_module() {
release_modules="$3"

cd $module_name

echo ${dependency_name}=${PWD} >> ${EPICS_RELEASE_FILE}

get_module_path "$release_modules" > configure/RELEASE

if [ -n "$NEEDS_TIRPC" ]; then
Expand All @@ -40,8 +43,6 @@ install_module() {
make -C iocBoot
fi

echo ${dependency_name}=${PWD} >> ${EPICS_RELEASE_FILE}

cd -
}

Expand Down

0 comments on commit a6c9d3e

Please sign in to comment.