diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-19 22:51:55 +0000 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-19 22:51:55 +0000 |
commit | 2e2f8f359c865382cbc138e4572ab9a63d736775 (patch) | |
tree | f76a820e8f39d46926ad0e6a5dc8f478ae429615 /chapter8/python.sh | |
parent | e4633200ea4609597950f991ce43f1a4d9f3cfbb (diff) | |
parent | 6b11f48c20f4411008c28ccb86463a98c0f06fef (diff) |
Merge branch 'chapter10'
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 \ |