1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* tool/make-snapshot (package): added RM and CP. [ruby-dev:37288]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20565 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-12-06 09:33:20 +00:00
parent 4b983b90c4
commit 82a0e61e6e
3 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sat Dec 6 18:33:16 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* tool/make-snapshot (package): added RM and CP. [ruby-dev:37288]
Sat Dec 6 17:51:35 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* pack.c (pack_pack): 'u0' is not special differently from 'm0'.

View file

@ -151,6 +151,8 @@ def package(rev, destdir)
f.puts "s,@OBJEXT@,|#_!!_#|o,g"
f.puts "s,@LIBRUBY@,|#_!!_#|liburyb.a,g"
f.puts "s,@LIBRUBY_A@,|#_!!_#|liburyb.a,g"
f.puts "s,@RM@,|#_!!_#|rm -f,g"
f.puts "s,@CP@,|#_!!_#|cp,g"
}
FileUtils.mkpath(hdrdir = "#{extout}/include/ruby")
File.open("#{hdrdir}/config.h", "w") {}

View file

@ -32,7 +32,7 @@ RUBY_EXTERN const char ruby_copyright[];
#define RUBY_REVISION 0
#endif
#if RUBY_PATCHLEVEL
#if RUBY_PATCHLEVEL && RUBY_PATCHLEVEL < 5000
#define RUBY_PATCHLEVEL_STR " patchlevel "STRINGIZE(RUBY_PATCHLEVEL)
#else
#define RUBY_PATCHLEVEL_STR ""