Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
fix: Fix libAppRun missing SYSTEM INTERP
Browse files Browse the repository at this point in the history
  • Loading branch information
srevinsaju committed Sep 10, 2020
1 parent 2bc4743 commit df60d61
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pyappimage/.env.template
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
APPIMAGE_UUID=a369f900-1b93-4164-9285-f26fdad1dfba

SYSTEM_INTERP=/lib64/ld-linux-x86-64.so.2
APPDIR_INTERP=$APPDIR/scrcpy/usr/lib/ld-linux-x86-64.so.2
APPDIR_INTERP=${APPDIR}/usr/lib/ld-linux-x86-64.so.2
RUNTIME_INTERP=/tmp/appimage-a369f900-1b93-4164-9285-f26fdad1dfba-ld-linux.so.2

SCRCPY_SERVER_PATH=${APPDIR}/scrcpy/usr/local/share/scrcpy/scrcpy-server
ADB=${APPDIR}/scrcpy/usr/bin/adb
SCRCPY_SERVER_PATH=${APPDIR}/usr/local/share/scrcpy/scrcpy-server
ADB=${APPDIR}/usr/bin/adb

EXEC_PATH=$APPDIR/scrcpy/usr/bin/scrcpy
EXEC_PATH=${APPDIR}/usr/bin/scrcpy
EXEC_ARGS=$@

APPDIR_LIBRARY_PATH=$APPDIR/scrcpy/usr/lib
LIBC_LIBRARY_PATH=$APPDIR/scrcpy/usr/lib
APPDIR_LIBC_VERSION=2.35
LD_PRELOAD=$APPDIR/scrcpy/libapprun_hooks.so
APPDIR_LIBRARY_PATH=$APPDIR/usr/lib
LIBC_LIBRARY_PATH=$APPDIR/usr/lib
APPDIR_LIBC_VERSION=2.32
LD_PRELOAD=$APPDIR/libapprun_hooks.so

0 comments on commit df60d61

Please sign in to comment.