Skip to content

Commit

Permalink
Merge pull request #408 from Googulator/checksum-fix
Browse files Browse the repository at this point in the history
Fix Python 3 checksum regression from 8341c4e
  • Loading branch information
fosslinux authored Jan 13, 2024
2 parents e618541 + 7e73fd2 commit f714453
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions steps/improve/finalize_fhs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ mount | grep '/proc' &> /dev/null || (mkdir -p /proc; mount -t proc proc /proc)
mount | grep '/sys' &> /dev/null || (mkdir -p /sys; mount -t sysfs sysfs /sys)
# Make /tmp a ramdisk (speeds up configure etc significantly)
mount | grep '/tmp' &> /dev/null || (mkdir -p /tmp; mount -t tmpfs tmpfs /tmp)
mount | grep '/dev/shm' &> /dev/null || (mkdir -p /dev/shm; mount -t tmpfs tmpfs /dev/shm)

# Add /etc/resolv.conf
echo 'nameserver 1.1.1.1' > /etc/resolv.conf
Expand Down

0 comments on commit f714453

Please sign in to comment.