On Mon, Feb 25, 2008 at 12:05 AM, Gatfield, Geoffrey
<[EMAIL PROTECTED]> wrote:
> Hello,
>
>  I've resolved the problem. We use gmake 3.77 which doesn't implement the
>  abspath function. But rather than give any hint that it failed it just
>  resolves to nothing. Once I knew this I replaced the function with a
>  shell script and now the build completes successfully.

This is strange, because in NSS 3.11.4, we implemented the abspath function
ourselves in mozilla/security/coreconf/rules.mk:
abspath = $(if $(findstring :,$(1)),$(1),$(if $(filter
/%,$(1)),$(1),$(PWD)/$(1)))

In fact, we had to rename our function core_abspath so as to not conflict
with the built-in abspath function in the latest versions of gmake:
https://bugzilla.mozilla.org/show_bug.cgi?id=345482

I'm glad you resolved the problem.  I'm just wondering what it was exactly.

Wan-Teh
_______________________________________________
dev-tech-crypto mailing list
dev-tech-crypto@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-tech-crypto

Reply via email to