diff options
Diffstat (limited to 'chapter8/python.sh')
-rw-r--r-- | chapter8/python.sh | 44 |
1 files changed, 22 insertions, 22 deletions
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
|