# HG changeset patch # User Jiri Vanek # Date 1551716271 -3600 # Node ID 0ab5d5c392c82c497f46497849a6f0befbb79953 # Parent bfb5802f9c16e2fc688b2451e33496604a6886ef Fixed tabs and and dashes in Makefile diff -r bfb5802f9c16 -r 0ab5d5c392c8 Makefile.am --- a/Makefile.am Fri Mar 01 14:29:09 2019 +0100 +++ b/Makefile.am Mon Mar 04 17:17:51 2019 +0100 @@ -1339,7 +1339,7 @@ #the code is copypasted from netx-dist-tests-remove-cert-from-public, because #with depending to not stamped target we always have to rerun reproducers targets stamps/exported-test-certs.stamp: stamps/change-dots-to-paths.stamp - -types=($(SIGNED_REPRODUCERS)) ; \ + types=($(SIGNED_REPRODUCERS)) ; \ PUBLIC_KEYSTORE=$$XDG_CONFIG_HOME ; \ if test "x$$PUBLIC_KEYSTORE" = x; then \ PUBLIC_KEYSTORE=${HOME}/.config ; \ @@ -1371,7 +1371,7 @@ export PUBLIC_KEYSTORE=$$(cygpath -p -m "$$PUBLIC_KEYSTORE") ; \ fi ; \ keystoredir=`dirname $$PUBLIC_KEYSTORE`; \ - [ ! -d $$keystoredir ] && mkdir -p $$keystoredir; \ + [ ! -d $$keystoredir ] && mkdir -p $$keystoredir; \ for which in "$${types[@]}" ; do \ yes | $(SYSTEM_JDK_DIR)/bin/keytool -import -alias $(TEST_CERT_ALIAS)_$$which -keystore $$PUBLIC_KEYSTORE -storepass $(PUBLIC_KEYSTORE_PASS) -file $(EXPORTED_TEST_CERT_PREFIX)_$$which.$(EXPORTED_TEST_CERT_SUFFIX) ;\ done ; @@ -1379,7 +1379,7 @@ touch $@ netx-dist-tests-remove-cert-from-public: - -types=($(SIGNED_REPRODUCERS)) ; \ + types=($(SIGNED_REPRODUCERS)) ; \ PUBLIC_KEYSTORE=$$XDG_CONFIG_HOME ; \ if test "x$$PUBLIC_KEYSTORE" = x; then \ PUBLIC_KEYSTORE=${HOME}/.config ; \ @@ -1389,7 +1389,7 @@ export PUBLIC_KEYSTORE=$$(cygpath -p -m "$$PUBLIC_KEYSTORE") ; \ fi ; \ keystoredir=`dirname $$PUBLIC_KEYSTORE`; \ - [ ! -d $$keystoredir ] && mkdir -p $$keystoredir; \ + [ ! -d $$keystoredir ] && mkdir -p $$keystoredir; \ for which in "$${types[@]}" ; do \ $(SYSTEM_JDK_DIR)/bin/keytool -delete -alias $(TEST_CERT_ALIAS)_$$which -keystore $$PUBLIC_KEYSTORE -storepass $(PUBLIC_KEYSTORE_PASS) ; \ done ;