[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: cvs and heimdal
Brian May <bam@snoopy.apana.org.au> writes:
> I have never noticed it running quite as slowly with other packages. If
I think Heimdal does (ab)use quite a lot of auto{conf,make} :-) I
dunno if the reason it takes some time is that we have lots of test or
that the generated configure doesn't quite scale.
> The problem (in case you didn't already realize) is in Makefile.am:
>
> LOCAL = @ACLOCAL@ -I $(srcdir)/cf
>
> This would be find, but @ACLOCAL@ expands to "cd $(srcdir)".
> As $(srcdir) is a relative path, problems will occur. I would
> suggest that the fix is to have:
>
> LOCAL = @ACLOCAL@ -I cf
>
> ie there is no need to specify the source directory, as the cd
> already makes the source directory the current directory.
Right. Thanks. Fixed.
/assar