From 18571c1166b7a82bad24b47d0b38bb685fef3bdb Mon Sep 17 00:00:00 2001 From: yugui Date: Sat, 4 Oct 2008 06:36:20 +0000 Subject: * common.mk (gdb-ruby): new target. it runs ruby under controlled by gdb. * common.mk (dist): accepts RELNAME variable as the second argument of make-snapshot.rb. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19672 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 8 ++++++++ common.mk | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 892dd7898..5b96648e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Sat Oct 4 15:33:26 2008 Yuki Sonoda (Yugui) + + * common.mk (gdb-ruby): new target. it runs ruby under controlled by + gdb. + + * common.mk (dist): accepts RELNAME variable as the second argument of + make-snapshot.rb. + Sat Oct 4 12:17:46 2008 Keiju Ishitsuka * lib/irb/irb/ext/save-history.rb: change load_history using File.expand_path. see [ruby-dev:36660]. Thanks Kouhei Sutou. diff --git a/common.mk b/common.mk index 46c8cf6c8..fa1004838 100644 --- a/common.mk +++ b/common.mk @@ -715,8 +715,11 @@ run.gdb: gdb: miniruby$(EXEEXT) run.gdb PHONY gdb -x run.gdb --quiet --args $(MINIRUBY) $(srcdir)/test.rb +gdb-ruby: $(PROGRAM) run.gdb PHONY + gdb -x run.gdb --quiet --args $(PROGRAM) $(srcdir)/test.rb + dist: - $(BASERUBY) $(srcdir)/tool/make-snapshot . + $(BASERUBY) $(srcdir)/tool/make-snapshot tmp $(RELNAME) up: @$(VCS) up "$(srcdir)" -- cgit