Skip to content

Commit

Permalink
fix gettext on install
Browse files Browse the repository at this point in the history
  • Loading branch information
comotion committed Mar 2, 2010
1 parent ce1dff2 commit c63fd71
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -340,15 +340,17 @@ gettext: gettext_compile

.PHONY: gettext_compile
gettext_compile: gettext_translate
cd po; \
tail --lines=+18 de_DE.po > current.txt; \
tail --lines=+18 de_DE_new.po > new.txt; \
diff -u current.txt new.txt
cd po; msgfmt --check --statistics --strict de_DE.po --output=de_DE.mo
cd po; \
mkdir -p ./de/LC_MESSAGES; \
cp de_DE.mo ./de/LC_MESSAGES/cpm.mo

# diff fails
# cd po; \
# tail --lines=+18 de_DE.po > current.txt; \
# tail --lines=+18 de_DE_new.po > new.txt; \
# diff -u current.txt new.txt


# ##############################################################################
# make new gettext file
Expand Down

0 comments on commit c63fd71

Please sign in to comment.