Skip to content

Commit

Permalink
merge revision(s) 22489:
Browse files Browse the repository at this point in the history
	* Makefile.in (update-rubyspec, test-rubyspec): Catch up to
	  rubyspec merge.  A patch by Brian Ford at [ruby-core:21032]


git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_7@23589 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
shyouhei committed May 26, 2009
1 parent 24ee592 commit a7f533f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
Tue May 26 21:24:01 2009 URABE Shyouhei <shyouhei@ruby-lang.org>

* Makefile.in (update-rubyspec, test-rubyspec): Catch up to
rubyspec merge. A patch by Brian Ford at [ruby-core:21032]

Tue May 26 21:21:49 2009 Akinori MUSHA <knu@iDaemons.org> Tue May 26 21:21:49 2009 Akinori MUSHA <knu@iDaemons.org>


* lib/soap/mimemessage.rb (MIMEMessage#to_s): Fix a fatal * lib/soap/mimemessage.rb (MIMEMessage#to_s): Fix a fatal
Expand Down
8 changes: 4 additions & 4 deletions Makefile.in
Expand Up @@ -189,14 +189,14 @@ update-rubyspec:
if [ -d $(srcdir)/rubyspec ]; then \ if [ -d $(srcdir)/rubyspec ]; then \
cd $(srcdir)/rubyspec/mspec; \ cd $(srcdir)/rubyspec/mspec; \
git pull; \ git pull; \
cd ../spec/rubyspec; \ cd ../spec; \
git pull; \ git pull; \
else \ else \
mkdir $(srcdir)/rubyspec; \
git clone $(MSPEC_GIT_URL) $(srcdir)/rubyspec/mspec; \ git clone $(MSPEC_GIT_URL) $(srcdir)/rubyspec/mspec; \
git clone $(RUBYSPEC_GIT_URL) $(srcdir)/rubyspec/spec/rubyspec; \ git clone $(RUBYSPEC_GIT_URL) $(srcdir)/rubyspec/spec; \
fi fi


test-rubyspec: test-rubyspec:
@if [ ! -d $(srcdir)/rubyspec ]; then echo No rubyspec here. make update-rubyspec first.; exit 1; fi @if [ ! -d $(srcdir)/rubyspec ]; then echo No rubyspec here. make update-rubyspec first.; exit 1; fi
$(RUNRUBY) $(srcdir)/rubyspec/mspec/bin/mspec -r$(srcdir)/ext/purelib.rb $(srcdir)/rubyspec/spec/rubyspec/$(MAJOR).$(MINOR) RUBY_EXE="$(RUNRUBY)" $(RUNRUBY) $(srcdir)/rubyspec/mspec/bin/mspec-run --background --prefix $(srcdir)/rubyspec/spec -B $(srcdir)/rubyspec/spec/ruby.$(MAJOR).$(MINOR).mspec

2 changes: 1 addition & 1 deletion version.h
Expand Up @@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2009-05-26" #define RUBY_RELEASE_DATE "2009-05-26"
#define RUBY_VERSION_CODE 187 #define RUBY_VERSION_CODE 187
#define RUBY_RELEASE_CODE 20090526 #define RUBY_RELEASE_CODE 20090526
#define RUBY_PATCHLEVEL 166 #define RUBY_PATCHLEVEL 167


#define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8 #define RUBY_VERSION_MINOR 8
Expand Down

0 comments on commit a7f533f

Please sign in to comment.