[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: Install Make Test Issue
Lauri Bettencourt wrote:
>
> Hello:
>
> I have /usr/bin/ln & /usr/xpg4/bin/ln which are part of the Solaris 8
> install. I modified the Makefile in /openldap-2.0.23/tests to call
> /usr/xpg4/bin/ln and I got the same results during the make test.
>
> It appears to me that there is a loop created by the Makefile in
> /openldap-2.0.23/tests which causes the issue.
>
> from Makefile in /openldap-2.0.23/tests:
>
> srcdir = .
>
> @-$(LN_S) $(srcdir)/data .
I expect this was supposed to be
@-$(LN_S) . $(srcdir)/data
which creates (e.g.)
lrwxrwxrwx 1 jpdalbec jpdalbec 1 Aug 20 13:59 data -> .
It's easy to get confused about the source and destination with many
Unix commands.
John Dalbec