# HG changeset patch # User Doug Simon # Date 1433883638 -7200 # Node ID 878786299d2d72bf0bdbd4002ccffcd1fad69b7a # Parent 543f150e7fa04f5a4822789b33ae2b7bd27ddf4c removed trailing slash from directory names in jvmci.make diff -r 543f150e7fa0 -r 878786299d2d make/jvmci.make --- a/make/jvmci.make Tue Jun 09 22:44:34 2015 +0200 +++ b/make/jvmci.make Tue Jun 09 23:00:38 2015 +0200 @@ -12,9 +12,9 @@ HS_COMMON_SRC=. # Directories, where the generated property-files reside within the JAR files -PROVIDERS_INF=/META-INF/providers/ -SERVICES_INF=/META-INF/services/ -OPTIONS_INF=/META-INF/options/ +PROVIDERS_INF=/META-INF/providers +SERVICES_INF=/META-INF/services +OPTIONS_INF=/META-INF/options ifeq ($(ABS_BOOTDIR),) $(error Variable ABS_BOOTDIR must be set to a JDK installation.) @@ -40,7 +40,8 @@ define extract $(eval TMP := $(shell mktemp -d $(1)_XXXXX)) mkdir -p $(2); - cd $(TMP) && $(JAR) xf $(abspath $(1)) && ((test ! -d .$(SERVICES_INF) || cp -r .$(SERVICES_INF) $(abspath $(2))) && (test ! -d .$(OPTIONS_INF) || cp -r .$(OPTIONS_INF) $(abspath $(2)))); + cd $(TMP) && $(JAR) xf $(abspath $(1)) && \ + ((test ! -d .$(SERVICES_INF) || cp -r .$(SERVICES_INF) $(abspath $(2))) && (test ! -d .$(OPTIONS_INF) || cp -r .$(OPTIONS_INF) $(abspath $(2)))); rm -r $(TMP); cp $(1) $(2); endef diff -r 543f150e7fa0 -r 878786299d2d mx/mx_graal_makefile.py --- a/mx/mx_graal_makefile.py Tue Jun 09 22:44:34 2015 +0200 +++ b/mx/mx_graal_makefile.py Tue Jun 09 23:00:38 2015 +0200 @@ -183,9 +183,9 @@ HS_COMMON_SRC=. # Directories, where the generated property-files reside within the JAR files -PROVIDERS_INF=/META-INF/providers/ -SERVICES_INF=/META-INF/services/ -OPTIONS_INF=/META-INF/options/ +PROVIDERS_INF=/META-INF/providers +SERVICES_INF=/META-INF/services +OPTIONS_INF=/META-INF/options ifeq ($(ABS_BOOTDIR),) $(error Variable ABS_BOOTDIR must be set to a JDK installation.) @@ -211,7 +211,7 @@ define extract $(eval TMP := $(shell mktemp -d $(1)_XXXXX)) mkdir -p $(2); - cd $(TMP) && $(JAR) xf $(abspath $(1)) && \ + cd $(TMP) && $(JAR) xf $(abspath $(1)) && \\ ((test ! -d .$(SERVICES_INF) || cp -r .$(SERVICES_INF) $(abspath $(2))) && (test ! -d .$(OPTIONS_INF) || cp -r .$(OPTIONS_INF) $(abspath $(2)))); rm -r $(TMP); cp $(1) $(2);