Makefile.in: fix portability issue

* Makefile.in (mjit_config.h): Alternative value with $@ and
  printf without argument are not portable, could fail on some
  platforms.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62585 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-02-26 08:37:02 +00:00
Родитель bde455170b
Коммит 19022bef01
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -546,7 +546,7 @@ mjit_config.h:
@{ \
quote() { \
printf "#define $$1"; shift; \
printf $${1+' "%s"'$$sep} $${@-" /**/"}; \
$${1+printf} $${1+' "%s"'$$sep} $${1+"$$@"}; \
echo; \
}; \
test "$(Q)" = @ || set -x; \