Bug fix for debian package creation script to include both gtk and Qt versions.

This commit is contained in:
mjbud77 2020-08-07 19:20:20 +00:00
parent 4e157c37fa
commit 80e1c6d35e
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ my $PKG_OUTPUT_FILE="fceux-$VERSION-$ARCH.deb";
# Start by auto figuring out dependencies of the executable.
# the rest of the package creation is trival.
my $SO_LIST="";
$SO_LIST+=`objdump -x $INSTALL_PREFIX/usr/bin/fceux`;
$SO_LIST+=`objdump -x $INSTALL_PREFIX/usr/bin/fceux-gtk`;
$SO_LIST=`objdump -x $INSTALL_PREFIX/usr/bin/fceux`;
$SO_LIST= $SO_LIST . `objdump -x $INSTALL_PREFIX/usr/bin/fceux-gtk`;
#print "$SO_LIST";