Ãvar ArnfjÃrà Bjarmason wrote: > --- a/Makefile > +++ b/Makefile > @@ -2051,7 +2051,7 @@ XGETTEXT_FLAGS = \ > --add-comments \ > --msgid-bugs-address="Git Mailing List <git@xxxxxxxxxxxxxxx>" \ > --from-code=UTF-8 > -XGETTEXT_FLAGS_C = $(XGETTEXT_FLAGS) --keyword=_ --keyword=N_ --language=C > +XGETTEXT_FLAGS_C = $(XGETTEXT_FLAGS) --keyword=_ --keyword=N_ --keyword="Q_:1,2" --language=C > LOCALIZED_C := $(C_OBJ:o=c) Ack. The line is getting long. Maybe it would make sense to split it up (like this)? Signed-off-by: Jonathan Nieder <jrnieder@xxxxxxxxx> --- Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 2441d56..2dbe555 100644 --- a/Makefile +++ b/Makefile @@ -2051,7 +2051,8 @@ XGETTEXT_FLAGS = \ --add-comments \ --msgid-bugs-address="Git Mailing List <git@xxxxxxxxxxxxxxx>" \ --from-code=UTF-8 -XGETTEXT_FLAGS_C = $(XGETTEXT_FLAGS) --keyword=_ --keyword=N_ --keyword="Q_:1,2" --language=C +XGETTEXT_FLAGS_C = $(XGETTEXT_FLAGS) --language=C \ + --keyword=_ --keyword=N_ --keyword=Q_:1,2 LOCALIZED_C := $(C_OBJ:o=c) po/git.pot: $(LOCALIZED_C) -- 1.7.5.rc0 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html