Get rid of embedding make command line

NMAKE sets MAKE to the full path name, which includes spaces by
the default installation.
This commit is contained in:
Nobuyoshi Nakada 2019-09-20 17:05:52 +09:00
Родитель d56a3c0635
Коммит 04c53a1d03
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BC7D6DF58D8DF60
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -2,9 +2,10 @@ $(TARGET_SO) $(STATIC_LIB): failure.failed
failure.failed: failure.cpp cxxanyargs.o
$(Q)$(RUBY) -rfileutils \
-e "err = IO.popen(%[$(MAKE) failure.o], err:[:child, :out], &:read)" \
-e "t = ARGV.shift" \
-e "err = IO.popen(ARGV, err:[:child, :out], &:read)" \
-e "abort err unless /rb_define_method/ =~ err" \
-e "FileUtils.touch(*ARGV)" $@
-e "FileUtils.touch(t)" $@ $(MAKE) failure.o
# AUTOGENERATED DEPENDENCIES START
cxxanyargs.o: $(RUBY_EXTCONF_H)