Skip to content

Commit

Permalink
test for dependencies only in binary files
Browse files Browse the repository at this point in the history
  • Loading branch information
gisogrimm committed Oct 10, 2024
1 parent 6ba5067 commit 318c0b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packaging/deb/htchdebian-mkdeb
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ chmod -R a+r "$colldir"
cd "$colldir"/
mkdir debian
touch debian/control
SHLIBBINS="$(find ./usr/lib/ -type f -print||true) $(find ./usr/bin/ -type f -print||true)"
SHLIBBINSCAND="$(find ./usr/lib/ -type f -print||true) $(find ./usr/bin/ -type f -print||true)"
SHLIBBINS=$(for f in $SHLIBBINSCAND; do file $f | grep -q ELF && echo $f; done)
dpkg-shlibdeps -l../libtascar/build/ -l../libov/tascar/libtascar/build/ --ignore-missing-info ${SHLIBBINS} || true
rm -f debian/control
test -e debian/substvars && mv debian/substvars DEBIAN/
Expand Down

0 comments on commit 318c0b4

Please sign in to comment.