Skip to content

Commit

Permalink
Indentify glibc helper as apprun v2 related
Browse files Browse the repository at this point in the history
  • Loading branch information
azubieta committed Jun 22, 2022
1 parent 17079f8 commit 628c92b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions appimagebuilder/modules/setup/apprun2.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
import fnmatch
import logging
import os
import queue
import random
import shutil
import string
from pathlib import Path
from typing import Final

from packaging import version

from appimagebuilder.utils import elf, file_utils
Expand Down Expand Up @@ -167,7 +167,7 @@ def _run_configuration_helpers(self, global_env, preserve_files: [Path]):
helpers.GLib,
helpers.GStreamer,
helpers.Gtk,
helpers.LibC,
helpers.AppRun2LibC,
helpers.Java,
helpers.LibGL,
helpers.OpenSSL,
Expand Down
2 changes: 1 addition & 1 deletion appimagebuilder/modules/setup/helpers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .glib import GLib
from .gstreamer import GStreamer
from .gtk import Gtk
from .libc import LibC
from .apprun_2_libc import AppRun2LibC
from .java import Java
from .libgl import LibGL
from .openssl import OpenSSL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ class InterpreterHandlerError(RuntimeError):
pass


class LibC(BaseHelper):
class AppRun2LibC(BaseHelper):
"""AppRun v2 glibc setup"""

def __init__(self, app_dir, finder):
super().__init__(app_dir, finder)

Expand Down

0 comments on commit 628c92b

Please sign in to comment.