bug-gettext
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [bug-gettext] [PATCH] OS/2 patches for gettext


From: Ralf Wildenhues
Subject: Re: [bug-gettext] [PATCH] OS/2 patches for gettext
Date: Tue, 29 Mar 2011 09:49:06 +0200
User-agent: Mutt/1.5.20 (2010-08-04)

Hello,

please note that there is a bug-gettext mailing list now for gettext
which I'm adding in Cc: (whereas bug-gnu-gettext forwards to
bug-gnu-utils).

* KO Myung-Hun wrote on Sun, Mar 27, 2011 at 01:50:38PM CEST:
> I attach OS/2 patches for gettext v1.8.1.1.
> 
> I have the problem that gettext-tools/Makefile.in is missing when using
> git repository.

gettext-tools/Makefile.in is generated from gettext-tools/Makefile.am
with automake.  But your patch didn't include any change of that file,
so maybe there is a typo here?

> So I send patches based on v1.8.1.1 tarball.

[...]
> --- gettext-runtime/intl/Makefile.in.org      2010-06-06 21:49:56.000000000 
> +0900
> +++ gettext-runtime/intl/Makefile.in  2011-03-26 17:40:42.000000000 +0900
> @@ -224,7 +224,8 @@
>         $(address@hidden@) \
>         -version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \
>         -rpath $(libdir) \
> -       -no-undefined
> +       -no-undefined \
> +       -shortname $(subst lib, k, $(basename $@))
>  
>  # Libtool's library version information for libintl.
>  # Before making a gettext release, the gettext maintainer must change this

This change requires -shortname support, which has not been committed to
upstream Libtool yet.  Apparently your copyright papers are through now
however, so we can work on the rest of the pending OS/2 patches for
Libtool.

Also, please note that $(subst ...) is GNU make-specific.  You could use
something like this as a portable workaround:
  -shortname `echo $@ | sed 's,.*/,,; s,^lib,k,'`

Cheers,
Ralf



reply via email to

[Prev in Thread] Current Thread [Next in Thread]