This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Add target to incorporate translations from translations.org


On Thu, 12 Jan 2017, Siddhesh Poyarekar wrote:

> +# Update translations from the translation project.
> +TRANSLATIONS_URL = http://translationproject.org/latest/libc

Should preferably use https.

> +WGET = wget
> +
> +update-translations:
> +	WGET -qO- $(TRANSLATIONS_URL) | sed -n 's|.*href="\([^"]\+po\)".*|\1|p' | \
> +	  while read f; do \
> +	    WGET -O $(objdir)/$$f-tmp $(TRANSLATIONS_URL)/$$f && \

Does this actually work?  I'd expect you to need to use $(WGET) not plain 
WGET.

-- 
Joseph S. Myers
joseph@codesourcery.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]