[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r35846 - in trunk: . build/generator subversion/libsvn_fs_fs subversion/tests/cmdline

From: Stefan Küng <tortoisesvn_at_gmail.com>
Date: Fri, 13 Feb 2009 16:40:17 +0100

Hyrum K. Wright wrote:
> Author: hwright
> Date: Fri Feb 13 07:34:40 2009
> New Revision: 35846
>
> Log:
> Revert r35748, in accordance with the sentiment described in this thread:
> http://svn.haxx.se/dev/archive-2009-02/0151.shtml
>
> Modified:
> trunk/Makefile.in
> trunk/build.conf
> trunk/build/generator/gen_win.py
> trunk/subversion/libsvn_fs_fs/ (props changed)
> trunk/subversion/libsvn_fs_fs/rep-cache.c
> trunk/subversion/tests/cmdline/commit_tests.py

shouldn't https://svn.collab.net/repos/svn/trunk/build/transform_sql.py
also get changed? Right now, the main function:

if __name__ == '__main__':
  if len(sys.argv) != 2:
    usage_and_exit("Incorrect number of arguments")
  main(sys.argv[1], sys.argv[1] + ".h")

simply appens ".h" to the filename, which results in rep-cache-db.sql.h
instead of rep-cache-db.h.
Maybe changing it to

if __name__ == '__main__':
  if len(sys.argv) != 3:
    usage_and_exit("Incorrect number of arguments")
  main(sys.argv[1], sys.argv[2])

?

Just asking because I'm now using a patched version of that file in my
build script.

Stefan

-- 
       ___
  oo  // \\      "De Chelonian Mobile"
 (_,\/ \_/ \     TortoiseSVN
   \ \_/_\_/>    The coolest Interface to (Sub)Version Control
   /_/   \_\     http://tortoisesvn.net
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=1151507

Received on 2009-02-13 16:40:43 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.