Skip to content

Commit 07169c3

Browse files
authored
PTI-205 links to linux *.so* files were incorrect
* The links were missed and instead full copies of the files were moved in place * The plain '*.so' files were incorrectly added to the dev package.
1 parent 9446a7b commit 07169c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/cmake/bom_line.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ STG1=${TGT_FILE##*/${BRK_TOKEN}/}
2020
STRIPPED_NAME=${STG1#$BRK_TOKEN/}
2121
echo STG1= ${STG1} STRIPPED_NAME ${STRIPPED_NAME}
2222

23-
if [[ -L "$4" ]]; then
23+
if [[ -L "$TGT_FILE" ]]; then
2424
echo "<N/A>"$':'"INS"${INST_DIR}/${STRIPPED_NAME}$':'CKSUM$':'ONE$'::'INT$':'755$':'$(readlink $TGT_FILE) >> ${TGT_BOM}
2525
else
2626
echo "DEL"/${STRIPPED_NAME}$':'"INS"${INST_DIR}/${STRIPPED_NAME}$':'CKSUM$':'ONE$':'$':'INT$':'$(stat -c '%a' ${TGT_FILE}) >> ${TGT_BOM}

0 commit comments

Comments
 (0)