After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 582264 - Brasero 2.26 has an error in localization Makefile.in.in
Brasero 2.26 has an error in localization Makefile.in.in
Status: RESOLVED DUPLICATE of bug 577133
Product: brasero
Classification: Applications
Component: general
2.26.1
Other Linux
: Normal normal
: 2.26
Assigned To: Brasero maintainer(s)
Brasero maintainer(s)
Depends on:
Blocks:
 
 
Reported: 2009-05-12 04:15 UTC by tiago
Modified: 2009-05-12 16:14 UTC
See Also:
GNOME target: ---
GNOME version: 2.25/2.26



Description tiago 2009-05-12 04:15:03 UTC
Due to this, there's no localization on brasero 2.26

I solved it here by comparing the Makefile.in.in on the /po directory with the same file on eog package.

This is how it is:

USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep '^$$lang$$' $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep '^$$lang$$'`"; then printf "$$lang "; fi; done; fi)


and this is how it should be (how it is on eog):

USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep ^$$lang$$`"; then printf "$$lang "; fi; done; fi)


notice the single quotes on  grep '^$$lang$$'`"
well, by replacing one by another the problem was solved, so that's it
Comment 1 tiago 2009-05-12 05:36:37 UTC
The exact same problem affects gnome-games-2.26.1
Comment 2 tiago 2009-05-12 05:38:49 UTC
and cheese-2.26.0 ...
Comment 3 Christian Persch 2009-05-12 11:21:39 UTC
This simply means those apps were disted with a broken intltool version.

*** This bug has been marked as a duplicate of 577133 ***
Comment 4 tiago 2009-05-12 13:46:25 UTC
I just checked gnome's ftp and those packages are still broken, so I guess you shouldn't say this bug (or bug #577133) is resolved, should you?
Comment 5 Philippe Rouquier 2009-05-12 16:14:00 UTC
Well, no, I build my packages on fedora 10 which has intltool 0.40.5 =(. That's why packages were broken.