From 76f3ec2621fb794697d0955c77ca9edd1fd56094 Mon Sep 17 00:00:00 2001 From: Konstantin Dmitriev Date: Jun 11 2020 07:06:40 +0000 Subject: OpenToonz Appimage: fix GLX error on ArchLinux - https://github.com/morevnaproject-org/opentoonz/issues/13 --- diff --git a/env-builder-data/build/script/packet/opentoonz-appimage.sh b/env-builder-data/build/script/packet/opentoonz-appimage.sh index e2872b5..cc9e2ed 100644 --- a/env-builder-data/build/script/packet/opentoonz-appimage.sh +++ b/env-builder-data/build/script/packet/opentoonz-appimage.sh @@ -37,6 +37,10 @@ pkinstall_release() { # https://github.com/morevnaproject-org/opentoonz/issues/39 rm -f $APPDIR/usr/lib/libstdc* || return 1 + # fix https://github.com/morevnaproject-org/opentoonz/issues/13 + # "Could not Initialize GLX on Arch Linux" + rm -f $APPDIR/usr/lib/libxcb-dri3* || return 1 + (cd "$INSTALL_RELEASE_PACKET_DIR" && tar -czf "$PK_APPDIR_NAME.tar.gz" "$PK_APPDIR_NAME.AppDir") || return 1 AppImageAssistant "$APPDIR" "$INSTALL_RELEASE_PACKET_DIR/$PK_APPDIR_NAME.appimage" || return 1 rm -rf "$APPDIR"