this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Symlink /var/run/syslog and /etc/localtime inside dprefix

+3
+3
src/dyld/darling
··· 82 82 ln -sf "../system-root/etc/passwd" "$1/etc/passwd" 83 83 ln -sf "../system-root/etc/group" "$1/etc/group" 84 84 ln -sf "../system-root/etc/hosts" "$1/etc/hosts" 85 + ln -sf "../system-root/etc/localtime" "$1/etc/localtime" || true 85 86 86 87 mkdir -p "$1/usr/share" 87 88 rm -f "$1/usr/share/zoneinfo" 2>/dev/null || true 88 89 ln -sf "../../system-root/usr/share/zoneinfo" "$1/usr/share/zoneinfo" 89 90 90 91 mkdir -p "$1/Volumes" "$1/Applications" "$1/var/root" || true 92 + mkdir -p "$1/var/run" || true 93 + ln -sf "../../system-root/dev/log" "$1/var/run/syslog" || true 91 94 92 95 # Clean up old cruft (symlinks) 93 96 rm -f "$1/bin" "$1/usr/bin" "$1/etc" "$1/System/Library/Frameworks" 2>/dev/null || true