makedist.midori: Remove debug files after grabbing all files
Otherwise we would not remove debug files from folder other than bin
This commit is contained in:
parent
4fa5bcf721
commit
f3de5b1112
1 changed files with 6 additions and 4 deletions
|
@ -119,10 +119,6 @@ mkdir $workdir/bin
|
|||
cp -L $files $workdir/bin
|
||||
popd > /dev/null
|
||||
|
||||
if [ "$DEBUG_BUILD" == "" ];then
|
||||
find -iname *.debug -exec rm {} \;
|
||||
fi
|
||||
|
||||
echo -n .
|
||||
|
||||
# copy etc
|
||||
|
@ -160,6 +156,12 @@ grab_files share midori.mo
|
|||
|
||||
grab_files share webkitgtk-1.0
|
||||
|
||||
if [ "$DEBUG_BUILD" == "" ];then
|
||||
pushd $workdir > /dev/null
|
||||
find -iname *.debug -exec rm {} \;
|
||||
popd > /dev/null
|
||||
fi
|
||||
|
||||
# copy locales for gtk
|
||||
# so we have translated stock items, file dialogs
|
||||
|
||||
|
|
Loading…
Reference in a new issue