--- old/make/common/MakeBase.gmk 2015-09-16 15:11:13.000000000 -0700 +++ new/make/common/MakeBase.gmk 2015-09-16 15:11:13.000000000 -0700 @@ -780,6 +780,14 @@ endif ################################################################################ +# Return a string suitable for use after a -classpath option. It will correct and safe to use +# on all platforms. Arguments are given as space separate classpath entries. +# param 1 : A space separated list of classpath entries +# The surrounding strip is needed to keep additional whitespace out +PathList = \ + "$(subst $(SPACE),$(PATH_SEP),$(strip $1))" + +################################################################################ # Hook to include the corresponding custom file, if present. $(eval $(call IncludeCustomExtension, , common/MakeBase.gmk))