changeset 1580:0ab5d5c392c8

Fixed tabs and and dashes in Makefile
author Jiri Vanek <jvanek@redhat.com>
date Mon, 04 Mar 2019 17:17:51 +0100
parents bfb5802f9c16
children 6ae6afda9284
files Makefile.am
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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 ;