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

Re: svn commit: r37531 - in trunk: . build

From: Greg Stein <gstein_at_gmail.com>
Date: Sat, 2 May 2009 02:22:26 +0200

On Sat, May 2, 2009 at 01:46, Arfrever Frehtes Taifersar Arahesis
<Arfrever.FTA_at_gmail.com> wrote:
>...
> +++ trunk/build/run_ctypesgen.sh        Fri May  1 16:46:38 2009        (r37531)
> @@ -13,15 +13,18 @@ CTYPESGEN="$5"
>  abs_srcdir="$6"
>  abs_builddir="$7"
>
> -svn_prefix="$8"
> +svn_libdir="$8"
>  apr_prefix="$9"
>  apu_prefix="${10}"
>
>  cp_relpath="subversion/bindings/ctypes-python"
> -### tempfile instead?
> -output="$abs_builddir/$cp_relpath/svn_all.py"
> +output="$cp_relpath/svn_all.py"

Why this change? The abs_builddir works just fine, so what are you
trying to accomplish here?

> -svn_includes="$abs_srcdir/subversion/include"
> +if test "$abs_builddir" = "$abs_srcdir"; then
> +  svn_includes="subversion/include"
> +else
> +  svn_includes="$abs_srcdir/subversion/include"
> +fi

Why this change? The abs_srcdir works, so there is never a need to
omit it. This "if" statement is just extra complexity.

>...
>  # This order is important. The resulting stubs will load libraries in
> @@ -54,6 +57,8 @@ if test "$apr_include_dir" != "$apu_incl
>   includes="$includes $apu_include_dir/ap[ru]_*.h"
>  fi
>
> +CPPFLAGS="`echo $CPPFLAGS`"
> +cppflags="`echo $cppflags`"

Why worry about extra spaces? What problem was it causing? This code
is spurious, unless there was a problem caused by those spaces.

>...

Cheers,
-g

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2022194
Received on 2009-05-02 02:22:43 CEST

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.