Skip to content

Commit

Permalink
Fix for sym links
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaderi committed Feb 7, 2025
1 parent deafbd2 commit 4c55807
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/FreeBSD/build.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ cd $HERE
cat >> ${STAGEDIR}/+POST_INSTALL <<EOF
# Add missing libraries symlinks due to invalid shlib verion
OUT=\`ldd /usr/local/bin/ntopng\`
OUT=\`ldd /usr/local/bin/ntopng | grep "not found"\`
if [ ! -z "\$OUT" ]; then
RES=\`echo \$OUT | grep "not found" | cut -d '=' -f 1 | sed 's/[[:blank:]]//g'\`
RES=\`echo \$OUT | cut -d '=' -f 1 | sed 's/[[:blank:]]//g'\`
for LIB in \$RES; do
BASELIB=\`echo \$LIB|cut -d '.' -f 1\`
Expand Down

0 comments on commit 4c55807

Please sign in to comment.