diff options
Diffstat (limited to 'chapter8/python.sh')
-rw-r--r-- | chapter8/python.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chapter8/python.sh b/chapter8/python.sh index f1ff5ec..04af366 100644 --- a/chapter8/python.sh +++ b/chapter8/python.sh @@ -1,19 +1,19 @@ #!/bin/bash set -e -sed 's|cpython/||' -i Include/cpython/pystate.h +sed 's|cpython/||' -i Include/cpython/pystate.h && ./configure --prefix=/usr \ --enable-shared \ --with-system-expat \ --with-system-ffi \ - --with-ensurepip=yes + --with-ensurepip=yes && -make +make && -make -j1 install +make -j1 install && -install -v -dm755 /usr/share/doc/python-"${VERSION}"/html +install -v -dm755 /usr/share/doc/python-"${VERSION}"/html && tar --strip-components=1 \ --no-same-owner \ |