From: Manuel Nickschas Date: Sun, 16 Mar 2014 21:00:49 +0000 (+0100) Subject: Don't look recursively for a .git dir X-Git-Tag: 0.11.0~108 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=a24e14992b80df1e1a676dd7d213b9e9992b5d55;hp=a24e14992b80df1e1a676dd7d213b9e9992b5d55 Don't look recursively for a .git dir The original GetGitRevisionDescription.cmake script would look for a .git dir recursively in the parent directories of its invocation; while a nice feature, it may pick up an unrelated repository if there's none in the Quassel directory. Because we know exactly where to find our own .git if it's there at all, we can remove the recursion and prevent this issue. ---