about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-05-15 01:31:02 +0200
committerDominik Maier <domenukk@gmail.com>2020-05-15 01:31:02 +0200
commita55e26959beee4d9c0a6de795a8f7bc9b6ae979b (patch)
tree7140a2fbdcae984ff04bce369deeb3f51d6bb5b1
parent63e2222af16f9306ef4a182f013f13ec6aab427a (diff)
downloadafl++-a55e26959beee4d9c0a6de795a8f7bc9b6ae979b.tar.gz
fixed recursive clean
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 8bdd642e..7d9e6d83 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -203,10 +203,10 @@ ifdef NO_PYTHON
 endif
 
 IN_REPO=0
-ifeq "$(shell command -v git && git status >/dev/null 2>&1 && echo 1 || echo 0)" "1"
+ifeq "$(shell command -v git >/dev/null && git status >/dev/null 2>&1 && echo 1 || echo 0)" "1"
   IN_REPO=1
 endif
-ifeq "$(shell command -v svn && svn proplist . 2>/dev/null && echo 1 || echo 0)" "1"
+ifeq "$(shell command -v svn >/dev/null && svn proplist . 2>/dev/null && echo 1 || echo 0)" "1"
   IN_REPO=1
 endif