Re: svn-config
From: Kalle Olavi Niemitalo <kon_at_iki.fi>
Date: 2003-07-27 17:44:43 CEST
Cédric Chabanois <cchabanois@ifrance.com> writes:
> ./svn-config: line 1: abs_srcdir: command not found
That happens here too. It's caused by this line in svn-config:
INCLUDES="-I$(abs_srcdir)/neon/src -I/home/kalle/include -I/home/kalle/include/neon -I/usr/include/apr-0 -I/usr/include/apr-0 -I/usr/include -I/usr/include/xmltok"
In Make, $(abs_srcdir) is a variable substitution; but in the
The corresponding line in svn-config.in is:
INCLUDES="@SVN_NEON_INCLUDES@ @SVN_DB_INCLUDES@ @SVN_APR_INCLUDES@ @SVN_APRUTIL_INCLUDES@"
And in config.status:
s,@SVN_NEON_INCLUDES@,-I$(abs_srcdir)/neon/src -I/home/kalle/include -I/home/kalle/include/neon ,;t t
This comes from build/ac-macros/neon.m4:
echo "Using neon found in source directory."
I see two ways to fix the error.
a) Use ${abs_srcdir} rather than $(abs_srcdir). That means a
b) Put the correct directory name directly in SVN_NEON_INCLUDES,
Similar changes apply to $(abs_builddir) in NEON_LIBS.
---------------------------------------------------------------------
|
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.