On Wed, Nov 19, 2014 at 08:15:09PM +0100, k...@shike2.com wrote:
> > The Makefile made libutil.a and libutf.a identical. Here is a patch to fix 
> > this.
> >  
> >  -$(LIB): $(LIBUTFOBJ) $(LIBUTILOBJ)
> >  +$(LIBUTF): $(LIBUTFOBJ)
> >  +  $(AR) -r -c $@ $?
> >  +  $(RANLIB) $@
> >  +
> >  +$(LIBUTIL): $(LIBUTILOBJ)
> >     $(AR) -r -c $@ $?
> >     $(RANLIB) $@
> >   
> 
> In fact, POSIX says that it could be only:
> 
> 
>       $(LIB): libutf($(LIBUTFOBJ)) libutil($(LIBUTILOBJ))
> 
> but my experience is that it doesn't work in BSD systems :(

We now depend on GNU make.  I am tired of fighting make implementations.

Reply via email to