mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
fix(zlib) (#4452)
* fix(zlib) boost complaining about -fPIC: https://github.com/pkgxdev/pantry/actions/runs/7226847979/job/19693299131 * don't include newlines
This commit is contained in:
parent
bb4c3edd9e
commit
1614e01c30
2 changed files with 5 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -29,7 +29,7 @@ jobs:
|
|||
RESULT="$RESULT ${y//$'\n'/}"
|
||||
done
|
||||
if [ -n "$RESULT" ]; then
|
||||
RESULT="$(echo $RESULT | jq -R -s -c 'split(" ")')"
|
||||
RESULT="$(echo -n $RESULT | jq -R -s -c 'split(" ")')"
|
||||
else
|
||||
RESULT='["zlib.net"]'
|
||||
fi
|
||||
|
|
|
@ -9,6 +9,9 @@ build:
|
|||
script: |
|
||||
./configure --prefix="{{prefix}}"
|
||||
make --jobs {{ hw.concurrency }} install
|
||||
env:
|
||||
linux/aarch64:
|
||||
CFLAGS: '$CFLAGS -fPIC'
|
||||
|
||||
test:
|
||||
script: |
|
||||
|
|
Loading…
Reference in a new issue