0
|
1 |
#! /usr/bin/env bash
|
|
2 |
find ./ -maxdepth 1 -name "*.cpp" -print > files
|
|
3 |
find ./ -maxdepth 1 -name "*.h" -print >> files
|
|
4 |
$XGETTEXT_QT --copyright-holder=This_file_is_part_of_KDE --msgid-bugs-address=http://bugs.kde.org --files-from=files -o $podir/phonon_gstreamer.pot
|
|
5 |
rm files
|