aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/pogen.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/pogen.sh b/bin/pogen.sh
index 453e0b1d8..b97ef046a 100755
--- a/bin/pogen.sh
+++ b/bin/pogen.sh
@@ -1,5 +1,9 @@
1#!/bin/sh 1#!/bin/sh
2# This script is in the public domain. 2# This script is in the public domain.
3
4# Set language domain to C for a more stable sort!
5export LANG=C
6
3find src -name "*.c" | grep -v \# | grep -v /test_ | grep -v /perf_ | grep -v _old | grep -v chat | grep -v .libs/ | sort > po/POTFILES.in 7find src -name "*.c" | grep -v \# | grep -v /test_ | grep -v /perf_ | grep -v _old | grep -v chat | grep -v .libs/ | sort > po/POTFILES.in
4grep -l _\( `find src -name "*.h"` | grep -v "platform.h" | grep -v _old | grep -v chat | sort >> po/POTFILES.in 8grep -l _\( `find src -name "*.h"` | grep -v "platform.h" | grep -v _old | grep -v chat | sort >> po/POTFILES.in
5 9