mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 11:22:55 +00:00
7 lines
214 B
Bash
7 lines
214 B
Bash
#!/bin/sh
|
|
files=`find . -name \*.rc -o -name \*.ui`
|
|
if [ "x$files" != "x" ]; then
|
|
$EXTRACTRC $files >> rc.cpp
|
|
fi
|
|
$XGETTEXT `find . -name \*.cc -o -name \*.cpp -o -name \*.h` -o $podir/kdevexecute.pot
|
|
rm -f rc.cpp
|