Quick fix: Run git if it is available of course!

Just fixing ifeq to ifneq - makes sense isn't it? ;)
This commit is contained in:
Thomas-Karl Pietrowski 2015-01-24 14:22:31 +01:00
parent e4950b4fbc
commit 6bbe984504
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ clean:
-find . -iname '*.pyx' -exec sh -c 'echo `dirname {}`/`basename {} .pyx`.c' \; | xargs rm
distclean: clean
ifeq ($(GIT_COMMAND),)
ifneq ($(GIT_COMMAND),)
@echo "Using GIT at $(GIT_COMMAND) to make a distclean..."
-git clean -dxf -e debian
else