The branch, master has been updated via 8913672eea21b4f262b6dd73002e2df7957627a2 (commit) from a0f3507b126c07b4fde403e8c939a6864a0451c2 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 8913672eea21b4f262b6dd73002e2df7957627a2 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Dec 3 13:55:13 2012 +0100 fix find call (order of options) ----------------------------------------------------------------------- Summary of changes: Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) The diff of changes is: diff --git a/Makefile b/Makefile index bc98046..b76e5ef 100755 --- a/Makefile +++ b/Makefile @@ -41,10 +41,10 @@ build_man: ${MAKE} -f Makefile.man2html build clean: clean_client clean_plugin clean_man - find . -type f -maxdepth 2 -name '*.o' -exec rm -vf {} + - find . -type f -maxdepth 2 -name 'moc_*.cpp' -exec rm -vf {} + - find . -type f -maxdepth 2 -name 'ui_*.h' -exec rm -vf {} + - find . -type f -maxdepth 2 -name 'qrc_*.cpp' -exec rm -vf {} + + find . -maxdepth 2 -name '*.o' -exec rm -vf {} + -type f + find . -maxdepth 2 -name 'moc_*.cpp' -exec rm -vf {} + -type f + find . -maxdepth 2 -name 'ui_*.h' -exec rm -vf {} + -type f + find . -maxdepth 2 -name 'qrc_*.cpp' -exec rm -vf {} + -type f rm -f x2goclient rm -f x2goclient.tag hooks/post-receive -- x2goclient.git (X2Go Client) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "x2goclient.git" (X2Go Client).