From fb6492e7027c42b546777b3948084b8d58694a1f Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 28 Aug 2016 17:20:10 +0200 Subject: [PATCH] gettextize: Pipe list of file names to xgettext This avoids an "Argument list too long" error with MINGW64 bash. $CPP_FILE_LIST is tens of kilobytes large. --- Languages/gettextize | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Languages/gettextize b/Languages/gettextize index fc6b3b0350..adb736a8ea 100755 --- a/Languages/gettextize +++ b/Languages/gettextize @@ -2,12 +2,11 @@ cd ${0/gettextize/}/.. SRCDIR=Source -CPP_FILE_LIST=$(find $SRCDIR \( -name '*.cpp' -o -name '*.h' -o -name '*.c' \) \ - -a ! -path '*Debug*') -xgettext -d dolphin-emu -s --keyword=_ --keyword=wxTRANSLATE --keyword=SuccessAlertT \ +find $SRCDIR \( -name '*.cpp' -o -name '*.h' -o -name '*.c' \) -a ! -path '*Debug*' | \ + xgettext -d dolphin-emu -s --keyword=_ --keyword=wxTRANSLATE --keyword=SuccessAlertT \ --keyword=PanicAlertT --keyword=PanicYesNoT --keyword=AskYesNoT --keyword=CriticalAlertT \ --keyword=GetStringT --keyword=_trans --add-comments=i18n -p ./Languages/po \ - -o dolphin-emu.pot $CPP_FILE_LIST --package-name="Dolphin Emulator" + -o dolphin-emu.pot -f - --package-name="Dolphin Emulator" sed -i "s/SOME DESCRIPTIVE TITLE\./Translation of dolphin-emu.pot to LANGUAGE/" Languages/po/dolphin-emu.pot sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER/2003-2013/" Languages/po/dolphin-emu.pot