Skip to content

Commit 12279e6

Browse files
committed
Clean up comments from python3
1 parent b5fa65d commit 12279e6

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

builds/runtimes/python3

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@ python_version=${BASE^}
1717
version_number=$(echo "$python_version" | cut -d- -f2)
1818
dep_url=https://python.org/ftp/python/${version_number}/${python_version}.tgz
1919

20-
# echo "Installing necesary sqlite headers"
21-
# # install the necessary sqlite headers
22-
# apt-get update
23-
# apt-get install -y libsqlite3-dev
24-
25-
# Old way of installing sqlite
2620
# shellcheck source=bin/utils
2721
source "$BIN_DIR/steps/sqlite3"
2822

@@ -34,8 +28,7 @@ echo "Building Python 3..."
3428
echo "Pulling from source: ${dep_url}"
3529

3630

37-
curl -L "${dep_url}" | tar xz -C "${OUT_PREFIX}" # --strip-components 1 # extract to $OUT_PREFIX, drop the first directory level, which is the archive name
38-
echo "`ls`"
31+
curl -L "${dep_url}" | tar xz -C "${OUT_PREFIX}"
3932
mv "${OUT_PREFIX}/${python_version}" src
4033
cd src
4134

@@ -51,9 +44,3 @@ find "${OUT_PREFIX}" \( -type d -a \( -name test -o -name tests \) \) -exec rm -
5144
LOCATION=${OUT_PREFIX%?}
5245

5346
ln $LOCATION/bin/python3 $LOCATION/bin/python
54-
55-
# # copy over sqlite3 headers
56-
# cp "/usr/include/sqlite3"* "$LOCATION/include/"
57-
58-
# # create generic .so symlink against stack image
59-
# ln -s "/usr/lib/x86_64-linux-gnu/libsqlite3.so.0" "$LOCATION/lib/libsqlite3.so"

0 commit comments

Comments
 (0)