Skip to content

Commit

Permalink
Linux build: Fix missing icons problem happening for tar package when…
Browse files Browse the repository at this point in the history
… binary is launched via relative path
  • Loading branch information
morevnaproject committed Mar 25, 2015
1 parent 156a695 commit 6b5727b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autobuild/fedora-crosscompile-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1655,7 +1655,7 @@ mkconfig()
cat > ${PREFIX}/synfig <<EOF
#!/bin/sh
SYSPREFIX=\`dirname "\$0"\`
SYSPREFIX=\$(cd \`dirname "\$0"\`; pwd)
export LD_LIBRARY_PATH=\${SYSPREFIX}/lib:\$LD_LIBRARY_PATH
export SYNFIG_ROOT=\${SYSPREFIX}/
Expand All @@ -1674,7 +1674,7 @@ EOF
cat > ${PREFIX}/synfigstudio <<EOF
#!/bin/sh
SYSPREFIX=\`dirname "\$0"\`
SYSPREFIX=\$(cd \`dirname "\$0"\`; pwd)
# Check if this system have JACK installed
if ( ! ldconfig -p | grep libjack.so >/dev/null ) || ( ! which jackd >/dev/null ) ; then
Expand Down

0 comments on commit 6b5727b

Please sign in to comment.