Re: [dev] [sbase][patch] make libutf.a and libutil.a different
> The Makefile made libutil.a and libutf.a identical. Here is a patch to fix this.
>
> -$(LIB): $(LIBUTFOBJ) $(LIBUTILOBJ)
> +$(LIBUTF): $(LIBUTFOBJ)
> + $(AR) -r -c $_AT_ $?
> + $(RANLIB) $_AT_
> +
> +$(LIBUTIL): $(LIBUTILOBJ)
> $(AR) -r -c $_AT_ $?
> $(RANLIB) $_AT_
>
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 :(
Regards,
Received on Wed Nov 19 2014 - 20:15:09 CET
This archive was generated by hypermail 2.3.0
: Wed Nov 19 2014 - 20:24:08 CET