< prev index next >

make/common/Utils.gmk

Print this page
rev 59189 : imported patch build

@@ -294,12 +294,12 @@
 # $1 - A property, or a space separated list of properties to test for.
 #
 # Returns true if the actual property matches one of the properties in the list,
 # and false otherwise.
 #
-# Examples: $(call isTargetOs, linux solaris) will return true when executed
-# on either linux or solaris, and false otherwise.
+# Examples: $(call isTargetOs, linux windows) will return true when executed
+# on either linux or windows, and false otherwise.
 # $(call isBuildCpuArch, x86) will return true iff the build CPU Arch is x86.
 
 isTargetOs = \
   $(strip $(if $(filter $(OPENJDK_TARGET_OS), $1), true, false))
 
< prev index next >