From 35215a8503c2326198b6b1a69eed1d6c7173d4be Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 22 Oct 2014 12:33:36 +0000 Subject: [PATCH] * common.mk (prelude.c): add dependency to LIB_SRCS because enc/prelude.rb requires lib/unicode_normalize.rb, and it's also requires lib/unicode_normalize/tables.rb (=LIB_SRCS). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ common.mk | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6d77f49d93..bda5cdf9c0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Wed Oct 22 21:31:56 2014 NAKAMURA Usaku + + * common.mk (prelude.c): add dependency to LIB_SRCS because + enc/prelude.rb requires lib/unicode_normalize.rb, and it's also + requires lib/unicode_normalize/tables.rb (=LIB_SRCS). + Wed Oct 22 21:09:51 2014 Yuki Yugui Sonoda * configure.in (nacl_cv_cpu_nick): fix typo in PNaCl. diff --git a/common.mk b/common.mk index 528c7ded66..55db39bc88 100644 --- a/common.mk +++ b/common.mk @@ -971,7 +971,7 @@ $(MINIPRELUDE_C): $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb prelude.c: $(srcdir)/tool/compile_prelude.rb $(RBCONFIG) \ $(srcdir)/lib/rubygems/defaults.rb \ $(srcdir)/lib/rubygems/core_ext/kernel_gem.rb \ - $(PRELUDE_SCRIPTS) $(PREP) + $(PRELUDE_SCRIPTS) $(PREP) $(LIB_SRCS) $(ECHO) generating $@ $(Q) $(COMPILE_PRELUDE) $(PRELUDE_SCRIPTS) $@