diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2018-02-12 00:52:53 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2018-02-12 00:52:53 +0800 |
commit | b4008610c13cad50b5d53bc713110ca9d4c90d88 (patch) | |
tree | 2e50657183a19c77765536cc9459839a7016931e /lang/python36/Makefile | |
parent | 3f599c3e347dbe1433fd23ead5ee8c8823ca15ba (diff) | |
download | freebsd-ports-gnome-b4008610c13cad50b5d53bc713110ca9d4c90d88.tar.gz freebsd-ports-gnome-b4008610c13cad50b5d53bc713110ca9d4c90d88.tar.zst freebsd-ports-gnome-b4008610c13cad50b5d53bc713110ca9d4c90d88.zip |
Remove over-patched shebang fix of Lib/cgi.py
The change from /usr/local/bin/python to /usr/local/bin/python3.6 is already done by USES=shebangfix.
% head -1 /usr/local/lib/python3.6/cgi.py
#!/usr/local/bin/python3.63.6
Diffstat (limited to 'lang/python36/Makefile')
-rw-r--r-- | lang/python36/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lang/python36/Makefile b/lang/python36/Makefile index 7b44ccc21732..fd748c16ca58 100644 --- a/lang/python36/Makefile +++ b/lang/python36/Makefile @@ -128,8 +128,6 @@ post-patch: "s|lib_dirs,\ \'readline\'|[\'${LOCALBASE}/lib\',\ \'.\'],\ \'readline\'|" \ ${WRKSRC}/setup.py .endif - ${REINPLACE_CMD} -e 's|/usr/local/bin/python|${python_CMD}|' \ - ${WRKSRC}/Lib/cgi.py post-install: .if ! ${PORT_OPTIONS:MDEBUG} |