Guest User

Untitled

a guest
Jun 14th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. python_version_full := $(wordlist 2,4,$(subst ., ,$(shell python --version 2>&1)))
  2. python_version_major := $(word 1,${python_version_full})
  3. my_cmd := ${my_cmd.python.${python_version_major}}
  4.  
  5. py = python3
  6. ifeq ($(python_version_major),2)
  7. py = python2
  8. endif
  9.  
  10. all :
  11. @echo ${py}
Add Comment
Please, Sign In to add comment