Erik:
Please review this trivial fix for mac bundles. In JDK-8078058, the
logic for generating the Info.plist files was changed. The problem is
that when introducing the SetupTextProcessing macro for generating
these files, actually including the definition of the macro was
forgotten. The fix is to simply add the proper include. I have
verified that with this fix, Info.plist is build like before.
Bug: https://bugs.openjdk.java.net/browse/JDK-8080915
Patch inline:
diff -r 704d642602d3 make/MacBundles.gmk
--- a/make/MacBundles.gmk
+++ b/make/MacBundles.gmk
@@ -25,6 +25,7 @@
include $(SPEC)
include MakeBase.gmk
+include TextFileProcessing.gmk
default: bundles
Looks good to me.
/Tim