From 6b6a67beaa8e8d2c470036403b5ca28345aed7cf Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Thu, 20 Jun 2024 20:44:08 -0700 Subject: [PATCH] fix: use libusb for pcscd --- packages/pcsc-lite/Containerfile | 6 ++---- src/packages.mk | 6 +----- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/packages/pcsc-lite/Containerfile b/packages/pcsc-lite/Containerfile index d4b4824..513a267 100644 --- a/packages/pcsc-lite/Containerfile +++ b/packages/pcsc-lite/Containerfile @@ -12,14 +12,12 @@ COPY --from=stagex/busybox . / COPY --from=stagex/m4 . / COPY --from=stagex/musl . / COPY --from=stagex/gcc . / -COPY --from=stagex/ccid . / COPY --from=stagex/libusb . / COPY --from=stagex/binutils . / COPY --from=stagex/make . / COPY --from=stagex/perl . / COPY --from=stagex/flex . / COPY --from=stagex/pkgconf . / -COPY --from=stagex/eudev . / RUN tar -xvf $SRC_FILE WORKDIR pcsc-lite-${VERSION} RUN --network=none <<-EOF @@ -30,8 +28,8 @@ RUN --network=none <<-EOF --mandir=/usr/share/man \ --infodir=/usr/share/info \ --localstatedir=/var \ - --disable-libusb \ - --enable-libudev \ + --enable-libusb \ + --disable-libudev \ --disable-maintainer-mode \ --disable-silent-rules \ --without-systemdsystemunitdir \ diff --git a/src/packages.mk b/src/packages.mk index 0cb2ab8..aa371d5 100644 --- a/src/packages.mk +++ b/src/packages.mk @@ -1396,8 +1396,6 @@ out/pcsc-lite/index.json: \ packages/pcsc-lite/Containerfile \ out/binutils/index.json \ out/busybox/index.json \ - out/ccid/index.json \ - out/eudev/index.json \ out/filesystem/index.json \ out/flex/index.json \ out/gcc/index.json \ @@ -1415,15 +1413,13 @@ out/pcsc-tools/index.json: \ packages/pcsc-tools/Containerfile \ out/binutils/index.json \ out/busybox/index.json \ - out/ccid/index.json \ - out/eudev/index.json \ out/filesystem/index.json \ out/flex/index.json \ out/gcc/index.json \ - out/libusb/index.json \ out/m4/index.json \ out/make/index.json \ out/musl/index.json \ + out/pcsc-lite/index.json \ out/perl/index.json \ out/pkgconf/index.json $(call build,pcsc-tools)