Skip to content

Commit

Permalink
fix: do not install anything to /usr/lib64
Browse files Browse the repository at this point in the history
Avoid breaking multilib symlinks

Signed-off-by: Dmitry Sharshakov <[email protected]>
  • Loading branch information
dsseng committed Feb 4, 2025
1 parent 35748ea commit ef0a679
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions pahole/pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ steps:
cd build
make DESTDIR=/rootfs install
rm -rf /rootfs/usr/share
mkdir -p /rootfs/usr/lib
mv /rootfs/usr/lib64/* /rootfs/usr/lib/
rm -r /rootfs/usr/lib64
finalize:
- from: /rootfs
to: /
2 changes: 1 addition & 1 deletion protobuf/pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ steps:
- |
tar -xzf protobuf.tar.gz --strip-components=1
cmake . -Dprotobuf_BUILD_TESTS=OFF -Dprotobuf_ABSL_PROVIDER=package -DCMAKE_INSTALL_PREFIX=/usr
cmake . -Dprotobuf_BUILD_TESTS=OFF -Dprotobuf_ABSL_PROVIDER=package -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
build:
- |
make -j $(nproc)
Expand Down

0 comments on commit ef0a679

Please sign in to comment.