[前][次][番号順一覧][スレッド一覧]

ruby-changes:50252

From: nobu <ko1@a...>
Date: Sun, 11 Feb 2018 21:40:34 +0900 (JST)
Subject: [ruby-changes:50252] nobu:r62370 (trunk): mjit_config.h: moved backslashs outside quotes

nobu	2018-02-11 21:40:28 +0900 (Sun, 11 Feb 2018)

  New Revision: 62370

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=62370

  Log:
    mjit_config.h: moved backslashs outside quotes

  Modified files:
    trunk/Makefile.in
Index: Makefile.in
===================================================================
--- Makefile.in	(revision 62369)
+++ Makefile.in	(revision 62370)
@@ -542,28 +542,28 @@ mjit_config.h: https://github.com/ruby/ruby/blob/trunk/Makefile.in#L542
 	echo '#ifndef RUBY_MJIT_CONFIG_H'; \
 	echo '#define RUBY_MJIT_CONFIG_H 1'; \
 	\
-	set x $(CC) && shift && echo '#define MJIT_CC_COMMON \\' && \
-	for w do echo '        "'$$w'", \\'; done; \
+	set x $(CC) && shift && echo '#define MJIT_CC_COMMON' \\ && \
+	for w do echo '        "'$$w'",' \\ ; done; \
 	echo ' /* MJIT_CC_COMMON */'; \
 	\
-	set x -w $(ARCH_FLAG) && shift && echo '#define MJIT_CFLAGS \\' && \
-	for w do echo '        "'$$w'", \\'; done; \
+	set x -w $(ARCH_FLAG) && shift && echo '#define MJIT_CFLAGS' \\ && \
+	for w do echo '        "'$$w'",' \\ ; done; \
 	echo ' /* MJIT_CFLAGS */'; \
 	\
-	set x $(optflags) && shift && echo '#define MJIT_OPTFLAGS \\' && \
-	for w do echo '        "'$$w'", \\'; done; \
+	set x $(optflags) && shift && echo '#define MJIT_OPTFLAGS' \\ && \
+	for w do echo '        "'$$w'",' \\ ; done; \
 	echo ' /* MJIT_OPTFLAGS */'; \
 	\
-	set x $(debugflags) && shift && echo '#define MJIT_DEBUGFLAGS \\' && \
-	for w do echo '        "'$$w'", \\'; done; \
+	set x $(debugflags) && shift && echo '#define MJIT_DEBUGFLAGS' \\ && \
+	for w do echo '        "'$$w'",' \\ ; done; \
 	echo ' /* MJIT_DEBUGFLAGS */'; \
 	\
-	set x @LDSHARED@ && shift && echo '#define MJIT_LDSHARED \\' && \
-	for w do echo '        "'$$w'", \\'; done; \
+	set x @LDSHARED@ && shift && echo '#define MJIT_LDSHARED' \\ && \
+	for w do echo '        "'$$w'",' \\ ; done; \
 	echo ' /* MJIT_LDSHARED */'; \
 	\
-	set x @DLDFLAGS@ && shift && echo '#define MJIT_DLDFLAGS \\' && \
-	for w do echo '        "'$$w'", \\'; done; \
+	set x @DLDFLAGS@ && shift && echo '#define MJIT_DLDFLAGS' \\ && \
+	for w do echo '        "'$$w'",' \\ ; done; \
 	echo ' /* MJIT_DLDFLAGS */'; \
 	\
 	echo '#endif /* RUBY_MJIT_CONFIG_H */'; \

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]