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

Re: svn commit: r35639 - in trunk: . build/generator

From: Stefan Sperling <stsp_at_elego.de>
Date: Tue, 3 Feb 2009 16:04:29 +0000

On Mon, Feb 02, 2009 at 04:52:24PM -0800, Arfrever Frehtes Taifersar Arahesis wrote:
> Author: arfrever
> Date: Mon Feb 2 16:52:24 2009
> New Revision: 35639
>
> Log:
> Fix value of __FILE__ in subversion/mod_authz_svn/mod_authz_svn.c,
> subversion/mod_dav_svn/mod_dav_svn.c and some JavaHL files,
> when $(abs_builddir) == $(abs_srcdir).
>
> * Makefile.in
> (srcpath): Define when $(abs_builddir) != $(abs_srcdir).
>
> * build/generator/gen_make.py
> (Generator.write): Use '$(srcpath)' instead of '$(abs_srcdir)/'.
>
> Modified:
> trunk/Makefile.in
> trunk/build/generator/gen_make.py
>
> Modified: trunk/Makefile.in
> URL: http://svn.collab.net/viewvc/svn/trunk/Makefile.in?pathrev=35639&r1=35638&r2=35639
> ==============================================================================
> --- trunk/Makefile.in Mon Feb 2 11:37:19 2009 (r35638)
> +++ trunk/Makefile.in Mon Feb 2 16:52:24 2009 (r35639)
> @@ -69,6 +69,10 @@ datadir = @datadir@
> datarootdir = @datarootdir@
> localedir = @localedir@
>
> +ifneq ($(abs_builddir), $(abs_srcdir))
> + srcpath = $(abs_srcdir)/
> +endif
> +

This bit breaks BSD make:

"Makefile", line 72: Missing dependency operator
"Makefile", line 74: Need an operator
Fatal errors encountered -- cannot continue

I don't think there is a portable way of doing if-then-else in make.
Can this be done somehow differently? Otherwise, we should make clear
that we only support GNU make.

Stefan
Received on 2009-02-03 17:04:49 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.