make/common/Modules.gmk
changeset 43287 0ac98135a64b
parent 43176 1da1ffe0c6fd
child 43658 4abbeb6d852d
child 43382 8e0c4b44e4c0
child 43661 c3f1a529d829
--- a/make/common/Modules.gmk	Thu Jan 26 21:20:23 2017 +0000
+++ b/make/common/Modules.gmk	Fri Jan 27 10:15:41 2017 +0100
@@ -182,15 +182,12 @@
 
 # Find all module-info.java files for the current build target platform and
 # configuration.
-# TODO: The $(firstword call is part of a workaround for using different
-# imported module-info.java in Jake due to a change in format. Remove once
-# new format is standard in JDK 9 and javafx delivers just that.
 # Param 1 - Module to find for, set to * for finding all
 FindAllModuleInfos = \
     $(wildcard \
         $(foreach sub, $(SRC_SUBDIRS), \
           $(patsubst %,%/$(strip $1)/$(sub)/module-info.java, $(TOP_SRC_DIRS))) \
-        $(patsubst %,%/$(strip $1)/module-info.java, $(firstword $(IMPORT_MODULES_SRC))))
+        $(patsubst %,%/$(strip $1)/module-info.java, $(IMPORT_MODULES_SRC)))
 
 # Find module-info.java files in the specific source dir
 # Param 1 - Src dir to find module-info.java files in