diff options
author | toonn <toonn@toonn.io> | 2018-08-19 21:18:42 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2018-08-19 21:18:42 +0200 |
commit | 5edd2c0f59d7f73c38b49f528d3578dca9e5162b (patch) | |
tree | 4c144cf6bd1e7ed3f45526f520a0906dc2470423 /Makefile | |
parent | 4e326bd9606ef6d4f7851bdca1ea8d5bcce85b73 (diff) | |
download | ranger-5edd2c0f59d7f73c38b49f528d3578dca9e5162b.tar.gz |
Remove strip because whitespace could be a valid name
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 611bb7c3..79b4f9d4 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ PYTHON ?= $(shell \ || (python2 -c 'import sys; sys.exit(sys.version < "2.6")' && \ which python2) \ ) -ifeq ($(strip $(PYTHON)),) +ifeq ($(PYTHON),) $(error No suitable python found.) endif SETUPOPTS ?= '--record=install_log.txt' |