Skip to content

Commit

Permalink
Merge pull request #1476 from chainguard-dev/fix-lib64
Browse files Browse the repository at this point in the history
fix(split pipelines): Don't split lib64 libraries
  • Loading branch information
EyeCantCU authored Sep 5, 2024
2 parents df98c9f + 00b2c63 commit 10a9185
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions pkg/build/pipelines/split/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,12 @@ pipeline:
libdirs=usr/
[ -d lib/ ] && libdirs="lib/ $libdirs"
[ -d lib64/ ] && libdirs="lib64/ $libdirs"
for i in usr/include usr/lib/pkgconfig usr/share/pkgconfig \
usr/share/aclocal usr/share/gettext \
usr/bin/*-config usr/bin/*_config usr/share/vala/vapi \
usr/share/gir-[0-9]* usr/share/qt*/mkspecs \
usr/lib/qt*/mkspecs usr/lib/cmake \
usr/lib/glade/modules usr/share/glade/catalogs \
usr/local/*/include usr/local/*/lib64 \
$(find . -name include -type d) \
$(find $libdirs -name '*.a' 2>/dev/null) \
$(find $libdirs -name '*.[cho]' \
Expand Down
1 change: 0 additions & 1 deletion pkg/build/pipelines/split/static.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ pipeline:
libdirs=usr/
[ -d lib/ ] && libdirs="lib/ $libdirs"
[ -d lib64/ ] && libdirs="lib64/ $libdirs"
for i in \
$(find $libdirs -name '*.a' 2>/dev/null); do
if [ -e "$PACKAGE_DIR/$i" ] || [ -L "$PACKAGE_DIR/$i" ]; then
Expand Down

0 comments on commit 10a9185

Please sign in to comment.