On Mon, Nov 10, 2008 at 08:26:56PM +0000, Eric Kow wrote:
> I noticed some errors compiling darcs on Solaris which look like they
> /may/ just be makefile-related; it was as if we were trying link in, for
> example, the object file for make_authors.hs whilst building darcs.
>
> http://buildbot.darcs.net/builders/karel%20solaris%20Solaris-5.11%20nevada-79a%20x86_64/builds/215/steps/compile_2/logs/stdio

That may be because DARCS_FILES went from being opt-in to opt-out:

    DARCS_FILES := $(shell find src -name '[A-Z]*.lhs' -o -name '[A-Z]*.hs')
    DARCS_FILES := $(filter-out <an exception>,$(DARCS_FILES))

It looks like find is listing Haskell files that start with a
lowercase letter, despite the above having [A-Z].

I cannot reproduce this behaviour on the only Solaris-type system I
have access to:

    $ uname -a
    SunOS vanilla 5.8 Generic_108528-19 sun4u sparc SUNW,Sun-Blade-100
    $ touch foo Foo FOO FoO
    $ find . -name '[A-Z]*'
    ./Foo
    ./FOO
    ./FoO
    $ which find
    /usr/bin/find
_______________________________________________
darcs-users mailing list
[email protected]
http://lists.osuosl.org/mailman/listinfo/darcs-users

Reply via email to