mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
mjit_config.h: moved backslashs outside quotes
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8f7d354269
commit
d76179cefc
1 changed files with 12 additions and 12 deletions
24
Makefile.in
24
Makefile.in
|
@ -542,28 +542,28 @@ mjit_config.h:
|
|||
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 */'; \
|
||||
|
|
Loading…
Reference in a new issue