Update ZeroMQ to 4.3.5

This commit is contained in:
root
2026-05-02 23:46:55 +00:00
parent 625d01ed85
commit b7c43274d6
5 changed files with 12 additions and 15 deletions
+6 -6
View File
@@ -99,11 +99,11 @@ install-prefix: $(packages)
exit 1; \
fi; \
if (( $${#artifacts[@]} > 1 )); then \
echo "WARN: multiple built artifacts for $$p; using newest by name"; \
echo "WARN: multiple built artifacts for $$p; using newest by modification time"; \
fi; \
IFS=$$'\n' sorted=( $$(printf '%s\n' "$${artifacts[@]}" | sort) ); \
IFS=$$'\n' sorted=( $$(ls -t "$${artifacts[@]}") ); \
unset IFS; \
f="$${sorted[$$(($${#sorted[@]} - 1))]}"; \
f="$${sorted[0]}"; \
echo " - $$p: $$f"; \
tar --no-same-owner -xzf "$$f" -C "$(host_prefix)"; \
done
@@ -120,11 +120,11 @@ ifneq ($(native_packages),)
exit 1; \
fi; \
if (( $${#artifacts[@]} > 1 )); then \
echo "WARN: multiple built artifacts for $$p; using newest by name"; \
echo "WARN: multiple built artifacts for $$p; using newest by modification time"; \
fi; \
IFS=$$'\n' sorted=( $$(printf '%s\n' "$${artifacts[@]}" | sort) ); \
IFS=$$'\n' sorted=( $$(ls -t "$${artifacts[@]}") ); \
unset IFS; \
f="$${sorted[$$(($${#sorted[@]} - 1))]}"; \
f="$${sorted[0]}"; \
echo " - $$p: $$f"; \
tar --no-same-owner -xzf "$$f" -C "$(build_prefix)"; \
done