From 9f1111de12ffe37a14a2e5415c4ceb7416218e98 Mon Sep 17 00:00:00 2001 From: robojerk Date: Sun, 7 Sep 2025 18:39:23 -0700 Subject: [PATCH] Fix pkg-config file path in Debian package creation - Change pkg-config path from /usr/lib/pkgconfig/ to /usr/lib/x86_64-linux-gnu/pkgconfig/ - This fixes the 'cannot stat /usr/lib/pkgconfig/fuse3.pc' error - The build, compilation, tests, and installation all completed successfully! - Only remaining issue was incorrect pkg-config file path This should be the absolute final fix for complete end-to-end success! --- .forgejo/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index ddfc4fd..1441c2e 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -170,7 +170,7 @@ jobs: cp -r /usr/include/fuse3/* libfuse3-3_3.10.0-1_amd64/usr/include/fuse3/ # Copy pkg-config files - cp /usr/lib/pkgconfig/fuse3.pc libfuse3-3_3.10.0-1_amd64/usr/lib/pkgconfig/ + cp /usr/lib/x86_64-linux-gnu/pkgconfig/fuse3.pc libfuse3-3_3.10.0-1_amd64/usr/lib/pkgconfig/ # Create control file cat > libfuse3-3_3.10.0-1_amd64/DEBIAN/control << "CONTROL_EOF"