Skip to content

Commit f714453

Browse files
authored
Merge pull request #408 from Googulator/checksum-fix
Fix Python 3 checksum regression from 8341c4e
2 parents e618541 + 7e73fd2 commit f714453

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

steps/improve/finalize_fhs.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ mount | grep '/proc' &> /dev/null || (mkdir -p /proc; mount -t proc proc /proc)
2121
mount | grep '/sys' &> /dev/null || (mkdir -p /sys; mount -t sysfs sysfs /sys)
2222
# Make /tmp a ramdisk (speeds up configure etc significantly)
2323
mount | grep '/tmp' &> /dev/null || (mkdir -p /tmp; mount -t tmpfs tmpfs /tmp)
24+
mount | grep '/dev/shm' &> /dev/null || (mkdir -p /dev/shm; mount -t tmpfs tmpfs /dev/shm)
2425

2526
# Add /etc/resolv.conf
2627
echo 'nameserver 1.1.1.1' > /etc/resolv.conf

0 commit comments

Comments
 (0)