blob: 1f5c1abd56b87f0b1c16d76f31d1c067d477af7b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# xgettext only processes literal strings. Someone with a poor sense of humor
# decided to ignore strings in preprocessor lines. So we construct a fake
# ".c" file with the definitions turned into literals.
sed -e 's/")/");/' \
-e 's/^#define[ ]*\([^ ]*\)[ ]*gettext/char *\1 = gettext/' \
-e 's,^#define[ ]*\([^ ]*\)[ ]*\\,/* #define \1 */char *\1 = \\,' \
$*
|