[前][次][番号順一覧][スレッド一覧]

ruby-changes:2389

From: ko1@a...
Date: 11 Nov 2007 19:21:43 +0900
Subject: [ruby-changes:2389] akr - Ruby:r13880 (trunk): report how lex.c handled.

akr	2007-11-11 19:21:30 +0900 (Sun, 11 Nov 2007)

  New Revision: 13880

  Modified files:
    trunk/Makefile.in

  Log:
    report how lex.c handled.


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/Makefile.in?r1=13880&r2=13879

Index: Makefile.in
===================================================================
--- Makefile.in	(revision 13879)
+++ Makefile.in	(revision 13880)
@@ -169,12 +169,12 @@
 # * XFS has a mtime with fractional part
 lex.c: keywords
 	if test -f $@ && test -z "`find $? -newer $@ -print`"; then \
-	  touch $@; \
+	  ( touch $@ && echo $@ touched. ) \
 	elif test -f $(srcdir)/lex.c && test -z "`find $? -newer $(srcdir)/lex.c -print`"; then \
-	  cp $(srcdir)/lex.c $@; \
+	  ( cp $(srcdir)/lex.c $@ && echo $@ copied. ) \
 	else \
 	  ( gperf --output-file=$@.tmp -C -p -j1 -i 1 -g -o -t -N rb_reserved_word -k1,3,$$ $? && cp $@.tmp $@ ) || \
-	  ( test -f $@ && touch $@ ) \
+	  ( test -f $@ && touch $@ && echo $@ touched after gperf fail. ) \
 	fi
 
 .y.c:

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml

[前][次][番号順一覧][スレッド一覧]