Ver código fonte

HUE-8737 [core] Typo in makefile about Python3 versions variable

Romain 6 anos atrás
pai
commit
a40acb5344
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      Makefile.vars

+ 2 - 2
Makefile.vars

@@ -43,7 +43,7 @@ PYTHON_VER ?= python2.7
 PYTHON_EXE = $(shell echo $(PYTHON_VER) | sed "s/\.//")
 
 ifeq ($(PYTHON_VER),python2.7)
-  $(info "PYTHNON_VER is $(PYTHON_VER)")
+  $(info "PYTHON_VER is $(PYTHON_VER)")
   EXT_ENV_INSTALL = ext-env-install
 else ifeq ($(shell echo $(PYTHON_VER) | head -c 8),python3.)
   PYTHON_VER := $(shell echo $(PYTHON_VER) | head -c 9)
@@ -94,7 +94,7 @@ ENV_PYTHON_VERSION = $(shell $(ENV_PYTHON) -c 'import sys; print ("python%d.%d"%
 
 ##############################
 # ENV_EASY_INSTALL uses the easy_install script installed in the virtual
-# environment. It must be called as an argument to ENV_PYTHON so the 
+# environment. It must be called as an argument to ENV_PYTHON so the
 # problem of the shebang being truncated at 80 characters in most kernels
 # doesn't arise.
 ##############################