summaryrefslogtreecommitdiffstats
path: root/po/generate_POTFILES.sh
diff options
context:
space:
mode:
Diffstat (limited to 'po/generate_POTFILES.sh')
-rwxr-xr-xpo/generate_POTFILES.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/po/generate_POTFILES.sh b/po/generate_POTFILES.sh
index 9dd9764b5..f8dce1831 100755
--- a/po/generate_POTFILES.sh
+++ b/po/generate_POTFILES.sh
@@ -21,8 +21,6 @@ export LC_ALL=C
) | grep -vx -f POTFILES.skip > POTFILES.src.in
-find ../share/extensions -name '*.py' -type f -print0 | xargs -0 egrep -l '(\<[QNC]?_|gettext) *\(' | sort > POTFILES.py.in
-find ../share/extensions -name '*.inx' -type f -print | sort > POTFILES.inx.in
-find ../share/ui -name '*.glade' -type f -print | sort > POTFILES.ui.in
-
-
+find ../share/extensions -name '*.py' -type f -print0 | xargs -0 egrep -l '(\<[QNC]?_|gettext) *\(' | grep -vx -f POTFILES.skip | sort > POTFILES.py.in
+find ../share/extensions -name '*.inx' -type f -print | grep -vx -f POTFILES.skip | sort > POTFILES.inx.in
+find ../share/ui -name '*.glade' -type f -print | grep -vx -f POTFILES.skip | sort > POTFILES.ui.in