mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-04-21 21:52:04 +02:00
Fix Linux install script (I do not like bash)
This commit is contained in:
parent
49e19ce79f
commit
28fa30baaa
3 changed files with 6 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/bash
|
||||
BINARY=$1
|
||||
STEAM=$2
|
||||
ARCH=$3
|
||||
ARCH=$2
|
||||
STEAM=$3
|
||||
function get_dep()
|
||||
{
|
||||
echo "Copying $1..."
|
||||
|
|
|
@ -13,7 +13,7 @@ else
|
|||
if sizeof['long'] == 8
|
||||
archarg = '64'
|
||||
else
|
||||
archarg = ''
|
||||
archarg = '32'
|
||||
endif
|
||||
meson.add_install_script('install.sh', meson.project_name(), swarg, archarg)
|
||||
meson.add_install_script('install.sh', meson.project_name(), archarg, swarg)
|
||||
endif
|
||||
|
|
|
@ -164,6 +164,8 @@ else
|
|||
if get_option('appimage') != true
|
||||
if sizeof['long'] == 8 and get_option('force32') != true
|
||||
rpath += '64'
|
||||
else
|
||||
rpath += '32'
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
|
Loading…
Add table
Reference in a new issue