mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-08-03 15:46:08 -04:00

Some versions of macOS on some machines might fail the build when xattr is invoked without sudo. Since the reason xattr is invoked is to help with testing, and the attribute it is removing is not relevant for iOS, this line can be safely removed from the build.
13 lines
383 B
Diff
13 lines
383 B
Diff
diff --git a/make/common/MakeBase.gmk b/make/common/MakeBase.gmk
|
|
index f31da150..710db352 100644
|
|
--- a/make/common/MakeBase.gmk
|
|
+++ b/make/common/MakeBase.gmk
|
|
@@ -375,7 +375,6 @@ else ifeq ($(OPENJDK_TARGET_OS),macosx)
|
|
define install-file
|
|
$(MKDIR) -p $(@D)
|
|
$(CP) -fRP '$<' '$@'
|
|
- if [ -n "`$(XATTR) -l '$@'`" ]; then $(XATTR) -c '$@'; fi
|
|
endef
|
|
else
|
|
define install-file
|