From 2c8204d6325a1a6607392d5905227b9043da17cc Mon Sep 17 00:00:00 2001 From: William Harrington Date: Sat, 11 Dec 2021 00:52:08 -0600 Subject: Major updates. --- chapter8/python.sh | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'chapter8/python.sh') diff --git a/chapter8/python.sh b/chapter8/python.sh index 04af366..230d4f6 100644 --- a/chapter8/python.sh +++ b/chapter8/python.sh @@ -1,22 +1,22 @@ -#!/bin/bash -set -e - -sed 's|cpython/||' -i Include/cpython/pystate.h && - -./configure --prefix=/usr \ - --enable-shared \ - --with-system-expat \ - --with-system-ffi \ - --with-ensurepip=yes && - -make && - -make -j1 install && - -install -v -dm755 /usr/share/doc/python-"${VERSION}"/html && - -tar --strip-components=1 \ - --no-same-owner \ - --no-same-permissions \ - -C /usr/share/doc/python-"${VERSION}"/html \ - -xvf ../python-"${VERSION}"-docs-html.tar.bz2 +#!/bin/bash +set -e + +sed 's|cpython/||' -i Include/cpython/pystate.h && + +./configure --prefix=/usr \ + --enable-shared \ + --with-system-expat \ + --with-system-ffi \ + --with-ensurepip=yes && + +make && + +make -j1 install && + +install -v -dm755 /usr/share/doc/python-"${VERSION}"/html && + +tar --strip-components=1 \ + --no-same-owner \ + --no-same-permissions \ + -C /usr/share/doc/python-"${VERSION}"/html \ + -xvf ../python-"${VERSION}"-docs-html.tar.bz2 -- cgit v1.2.3-54-g00ecf