make/common/MakeBase.gmk
changeset 31310 481585782338
parent 30095 0034766ccb09
child 31312 74e504d86cc9
--- a/make/common/MakeBase.gmk	Tue Jun 16 13:00:47 2015 -0700
+++ b/make/common/MakeBase.gmk	Thu Jun 04 18:27:42 2015 +0200
@@ -754,6 +754,17 @@
     $(call DependOnVariableHelper,$(strip $1),$(strip $2))
 
 ################################################################################
+# Find lib dir for module
+# Param 1 - module name
+ifeq ($(OPENJDK_TARGET_OS_TYPE), unix)
+  FindLibDirForModule = \
+      $(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)$(OPENJDK_TARGET_CPU_LIBDIR)
+else
+  FindLibDirForModule = \
+      $(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)
+endif
+
+################################################################################
 
 # Hook to include the corresponding custom file, if present.
 $(eval $(call IncludeCustomExtension, , common/MakeBase.gmk))