Bug fix for debian package creation script to include both gtk and Qt versions.
This commit is contained in:
parent
4e157c37fa
commit
80e1c6d35e
|
@ -11,8 +11,8 @@ my $PKG_OUTPUT_FILE="fceux-$VERSION-$ARCH.deb";
|
||||||
# Start by auto figuring out dependencies of the executable.
|
# Start by auto figuring out dependencies of the executable.
|
||||||
# the rest of the package creation is trival.
|
# the rest of the package creation is trival.
|
||||||
my $SO_LIST="";
|
my $SO_LIST="";
|
||||||
$SO_LIST+=`objdump -x $INSTALL_PREFIX/usr/bin/fceux`;
|
$SO_LIST=`objdump -x $INSTALL_PREFIX/usr/bin/fceux`;
|
||||||
$SO_LIST+=`objdump -x $INSTALL_PREFIX/usr/bin/fceux-gtk`;
|
$SO_LIST= $SO_LIST . `objdump -x $INSTALL_PREFIX/usr/bin/fceux-gtk`;
|
||||||
|
|
||||||
#print "$SO_LIST";
|
#print "$SO_LIST";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue