diff options
-rw-r--r-- | osx/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/osx/Makefile b/osx/Makefile index 075628668..8d16b42ae 100644 --- a/osx/Makefile +++ b/osx/Makefile @@ -1,6 +1,6 @@ -PYVERSION := $(shell /usr/bin/python -c "import sys; print sys.version[0:3]") -PYMAJORVERSION := $(shell /usr/bin/python -c "import sys; print sys.version[0:1]") -PYMINORVERSION := $(shell /usr/bin/python -c "import sys; print sys.version[2:3]") +PYVERSION := $(shell /usr/bin/python -c "import sys; print '%s.%s' % (sys.version_info[0], sys.version_info[1])"python -c "import sys; print sys.version[0:3]") +PYMAJORVERSION := $(shell /usr/bin/python -c "import sys; print sys.version_info[0]") +PYMINORVERSION := $(shell /usr/bin/python -c "import sys; print sys.version_info[1]") PREFLIGHT = preflight POSTFLIGHT = postflight PKGROOT = bcfg2pkg |