diff options
author | Alexander Pyhalov <apyhalov@gmail.com> | 2016-08-30 12:55:15 +0300 |
---|---|---|
committer | Gordon Ross <gordon.w.ross@gmail.com> | 2016-09-29 22:49:32 -0400 |
commit | 9f9230833b50b8271840dc2c12bd1e94d9df7d12 (patch) | |
tree | d674face6d7ae05e652e1ffeed7c0ce37cc32f86 /usr/src/cmd/pyzfs | |
parent | 8ae05c101a3c849364fa53a66ec87aa59823326a (diff) | |
download | illumos-gate-9f9230833b50b8271840dc2c12bd1e94d9df7d12.tar.gz |
5969 update illumos-gate to use python2.7
Portions contributed by: Igor Kozhukhov <ikozhukhov@gmail.com>
Reviewed by: Andrew Stormont <astormont@racktopsystems.com>
Reviewed by: Albert Lee <trisk@omniti.com>
Reviewed by: Adam Stevko <adam.stevko@gmail.com>
Approved by: Gordon Ross <gwr@nexenta.com>
Diffstat (limited to 'usr/src/cmd/pyzfs')
-rw-r--r-- | usr/src/cmd/pyzfs/Makefile | 1 | ||||
-rw-r--r-- | usr/src/cmd/pyzfs/pyzfs.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/usr/src/cmd/pyzfs/Makefile b/usr/src/cmd/pyzfs/Makefile index 65d3594902..8895ccf525 100644 --- a/usr/src/cmd/pyzfs/Makefile +++ b/usr/src/cmd/pyzfs/Makefile @@ -30,7 +30,6 @@ PYSRCS= pyzfs.py PYOBJS= $(PYSRCS:%.py=%.pyc) PYFILES= $(PYSRCS) $(PYOBJS) POFILE= pyzfs.po -PYTHON= $(PYTHON_26) ROOTLIBZFSFILES= $(PYFILES:%=$(ROOTLIB)/zfs/%) diff --git a/usr/src/cmd/pyzfs/pyzfs.py b/usr/src/cmd/pyzfs/pyzfs.py index 2088993d6d..03f29062d0 100644 --- a/usr/src/cmd/pyzfs/pyzfs.py +++ b/usr/src/cmd/pyzfs/pyzfs.py @@ -1,4 +1,4 @@ -#! /usr/bin/python2.6 -S +#!@PYTHON@ -S # # CDDL HEADER START # |