Skip to content

Commit

Permalink
Order otool output for stability
Browse files Browse the repository at this point in the history
  • Loading branch information
maxfierke committed Oct 15, 2024
1 parent 721d24a commit d232ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ check-formatting: $(SOURCES)

.PHONY: check-libraries
check-libraries: bin/mstrap
@if [ ! -z "$(STATIC)" ] && [ "$(TARGET_OS)" == "darwin" ] && [ "$$(otool -LX bin/mstrap | awk '{print $$1}')" != "$$(cat expected.libs.darwin)" ]; then \
@if [ ! -z "$(STATIC)" ] && [ "$(TARGET_OS)" == "darwin" ] && [ "$$(otool -LX bin/mstrap | awk '{print $$1}' | sort)" != "$$(cat expected.libs.darwin)" ]; then \
echo "FAIL: bin/mstrap has non-allowed dynamic libraries"; \
exit 1; \
else \
Expand Down

0 comments on commit d232ddd

Please sign in to comment.