Skip to content

Commit

Permalink
* enc/depend: add transdb.c.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18412 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Aug 7, 2008
1 parent 2ce5ff1 commit 380e558
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Thu Aug 7 17:47:55 2008 Nobuyoshi Nakada <[email protected]>

* enc/depend: add transdb.c.

Thu Aug 7 16:28:51 2008 Nobuyoshi Nakada <[email protected]>

* Makefile.in, common.mk, {bcc,win}32/Makefile.sub (clean-ext): do not
Expand Down
1 change: 0 additions & 1 deletion enc/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ ldflags = $(LDFLAGS)
dldflags = @DLDFLAGS@
archflag = @ARCH_FLAG@
DLDFLAGS = $(ldflags) $(dldflags) $(archflag)
BASERUBY = @BASERUBY@

RM = @RM@

Expand Down
4 changes: 3 additions & 1 deletion enc/depend
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
% encs.each {|e| e.chomp!(".c")}
% alphanumeric_order = proc {|e| e.scan(/(\d+)|(\D+)/).map {|n,a| a||[n.size,n.to_i]}.flatten}
% encs = encs.sort_by(&alphanumeric_order)
% encs.unshift(encs.delete("encdb"))
% atrans = []
% trans = Dir.open($srcdir+"/trans") {|d|
% d.select {|e|
% if e != 'transdb.c' && e.chomp!('.c')
% if e.chomp!('.c')
% atrans << e if e.chomp!(".erb")
% true
% end
Expand All @@ -15,6 +16,7 @@
% trans.uniq!
% atrans = atrans.sort_by(&alphanumeric_order)
% trans = trans.sort_by(&alphanumeric_order)
% trans.unshift(trans.delete("transdb"))
% trans.map! {|e| "trans/#{e}"}
% dependencies = encs + trans
% cleanlibs = Shellwords.shellwords(CONFIG["cleanlibs"] || "")
Expand Down

0 comments on commit 380e558

Please sign in to comment.