# HG changeset patch # User Jiri Vanek # Date 1551712537 -3600 # Node ID 358be410039df4aacbcb857a849d1a52941d286c # Parent c49a02a87faba06e415e21bd0b6a2a9281547615 keytool command used to create test keystores is called windows friendly * Makefile.am: path to keystore or PUBLIC_KEYSTORE is preprocessed via cygapth on windows diff -r c49a02a87fab -r 358be410039d ChangeLog --- a/ChangeLog Mon Mar 04 16:14:56 2019 +0100 +++ b/ChangeLog Mon Mar 04 16:15:37 2019 +0100 @@ -1,3 +1,8 @@ +2019-02-27 Jiri Vanek + + keytool command used to create test keystores is called windows friendly + * Makefile.am: path to keystore or PUBLIC_KEYSTORE is preprocessed via cygapth on windows + 2019-02-27 Jiri Vanek jar command used to pack reproducers is called windows friendly diff -r c49a02a87fab -r 358be410039d Makefile.am --- a/Makefile.am Mon Mar 04 16:14:56 2019 +0100 +++ b/Makefile.am Mon Mar 04 16:15:37 2019 +0100 @@ -1187,7 +1187,10 @@ touch $@ stamps/netx-dist-tests-sign-some-reproducers.stamp: stamps/netx-dist-tests-prepare-reproducers.stamp - keystore=$(TOP_BUILD_DIR)/$(PRIVATE_KEYSTORE_NAME); \ + export keystore=$(TOP_BUILD_DIR)/$(PRIVATE_KEYSTORE_NAME); \ + if [ which cygpath ] ; then \ + export keystore=$(shell cygpath -p -m "$$keystore") ; \ + fi ; \ types=($(SIGNED_REPRODUCERS)) ; \ for which in "$${types[@]}" ; do \ tcaw=$(TEST_CERT_ALIAS)_$$which ; \ @@ -1243,7 +1246,10 @@ if test "x$$PUBLIC_KEYSTORE" = x; then \ PUBLIC_KEYSTORE=${HOME}/.config ; \ fi ;\ - PUBLIC_KEYSTORE=$$PUBLIC_KEYSTORE/$(PUBLIC_KEYSTORE_STUB); \ + export PUBLIC_KEYSTORE=$$PUBLIC_KEYSTORE/$(PUBLIC_KEYSTORE_STUB); \ + if [ which cygpath ] ; then \ + export PUBLIC_KEYSTORE=$(shell cygpath -p -m "$$PUBLIC_KEYSTORE") ; \ + fi ; \ keystoredir=`dirname $(PUBLIC_KEYSTORE)`; \ [ ! -d $(keystoredir) ] && mkdir -p $(keystoredir); \ for which in "$${types[@]}" ; do \ @@ -1262,7 +1268,10 @@ if test "x$$PUBLIC_KEYSTORE" = x; then \ PUBLIC_KEYSTORE=${HOME}/.config ; \ fi ;\ - PUBLIC_KEYSTORE=$$PUBLIC_KEYSTORE/$(PUBLIC_KEYSTORE_STUB); \ + export PUBLIC_KEYSTORE=$$PUBLIC_KEYSTORE/$(PUBLIC_KEYSTORE_STUB); \ + if [ which cygpath ] ; then \ + export PUBLIC_KEYSTORE=$(shell cygpath -p -m "$$PUBLIC_KEYSTORE") ; \ + fi ; \ keystoredir=`dirname $(PUBLIC_KEYSTORE)`; \ [ ! -d $(keystoredir) ] && mkdir -p $(keystoredir); \ for which in "$${types[@]}" ; do \ @@ -1277,7 +1286,10 @@ if test "x$$PUBLIC_KEYSTORE" = x; then \ PUBLIC_KEYSTORE=${HOME}/.config ; \ fi ;\ - PUBLIC_KEYSTORE=$$PUBLIC_KEYSTORE/$(PUBLIC_KEYSTORE_STUB); \ + export PUBLIC_KEYSTORE=$$PUBLIC_KEYSTORE/$(PUBLIC_KEYSTORE_STUB); \ + if [ which cygpath ] ; then \ + export PUBLIC_KEYSTORE=$(shell cygpath -p -m "$$PUBLIC_KEYSTORE") ; \ + fi ; \ keystoredir=`dirname $(PUBLIC_KEYSTORE)`; \ [ ! -d $(keystoredir) ] && mkdir -p $(keystoredir); \ for which in "$${types[@]}" ; do \