Fix pkg-config file path in Debian package creation
Some checks failed
Build libfuse / Build and Test (push) Failing after 1m24s

- 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!
This commit is contained in:
robojerk 2025-09-07 18:39:23 -07:00
parent ec9baab337
commit 9f1111de12

View file

@ -170,7 +170,7 @@ jobs:
cp -r /usr/include/fuse3/* libfuse3-3_3.10.0-1_amd64/usr/include/fuse3/ cp -r /usr/include/fuse3/* libfuse3-3_3.10.0-1_amd64/usr/include/fuse3/
# Copy pkg-config files # 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 # Create control file
cat > libfuse3-3_3.10.0-1_amd64/DEBIAN/control << "CONTROL_EOF" cat > libfuse3-3_3.10.0-1_amd64/DEBIAN/control << "CONTROL_EOF"