From 57ae9291b928e0bf87f53c734b812cb12892b55f Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Fri, 27 Mar 2015 03:52:37 +0000 Subject: [PATCH] iscsi-scst: Concatenate two string literals This patch fixes the following kernel 3.19 checkpatch complaint: Consecutive strings are generally better as a single string. Signed-off-by: Bart Van Assche git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@6160 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- iscsi-scst/Makefile | 4 ++-- iscsi-scst/Makefile_user_space_only | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/iscsi-scst/Makefile b/iscsi-scst/Makefile index 405a63cdd..81a7e79e1 100644 --- a/iscsi-scst/Makefile +++ b/iscsi-scst/Makefile @@ -60,8 +60,8 @@ include/iscsi_scst_itf_ver.h: include/iscsi_scst.h echo "/* Autogenerated, don't edit */" >include/iscsi_scst_itf_ver.h echo "" >>include/iscsi_scst_itf_ver.h echo -n "#define ISCSI_SCST_INTERFACE_VERSION " >>include/iscsi_scst_itf_ver.h - echo -n "ISCSI_VERSION_STRING \"_\" " >>include/iscsi_scst_itf_ver.h - echo "\"`sha1sum include/iscsi_scst.h|awk '{printf $$1}'`\"" >>include/iscsi_scst_itf_ver.h + echo -n "ISCSI_VERSION_STRING \"_" >>include/iscsi_scst_itf_ver.h + echo "`sha1sum include/iscsi_scst.h|awk '{printf $$1}'`\"" >>include/iscsi_scst_itf_ver.h install: all @install -vD -m 755 usr/iscsi-scstd $(DESTDIR)$(SBINDIR)/iscsi-scstd diff --git a/iscsi-scst/Makefile_user_space_only b/iscsi-scst/Makefile_user_space_only index 695ac9fa3..24032afb7 100644 --- a/iscsi-scst/Makefile_user_space_only +++ b/iscsi-scst/Makefile_user_space_only @@ -19,8 +19,8 @@ include/iscsi_scst_itf_ver.h: include/iscsi_scst.h echo "/* Autogenerated, don't edit */" >include/iscsi_scst_itf_ver.h echo "" >>include/iscsi_scst_itf_ver.h echo -n "#define ISCSI_SCST_INTERFACE_VERSION " >>include/iscsi_scst_itf_ver.h - echo -n "ISCSI_VERSION_STRING \"_\" " >>include/iscsi_scst_itf_ver.h - echo "\"`sha1sum include/iscsi_scst.h|awk '{printf $$1}'`\"" >>include/iscsi_scst_itf_ver.h + echo -n "ISCSI_VERSION_STRING \"_" >>include/iscsi_scst_itf_ver.h + echo "`sha1sum include/iscsi_scst.h|awk '{printf $$1}'`\"" >>include/iscsi_scst_itf_ver.h install: all @install -vD -m 755 usr/iscsi-scstd $(DESTDIR)$(SBINDIR)/iscsi-scstd