Differences From Artifact [9bf8bf8013]:
- Executable file build.sh — part of check-in [14172a910a] at 2019-08-21 06:00:24 on branch trunk — move modules to a subdirectory in order to keep the directory tree organized and make room for OS-specific build files (user: lexi, size: 8950) [annotate] [blame] [check-ins using]
To Artifact [e2a59a38b7]:
- Executable file build.sh — part of check-in [34059b4bf6] at 2019-08-21 23:35:09 on branch trunk — replace `.` with `source` in shell scripts for compatibility; change `sh` shebangs to use bash instead (user: lexi, size: 8955) [annotate] [blame] [check-ins using]
1 1 #!/usr/bin/env bash 2 2 export to=${to:-out} 3 -. global/common.sh 3 +source global/common.sh 4 4 5 5 if test "$os$arch$bits" = ""; then 6 6 say "set the following environment variables to the appropriate atoms describing your system. for help determining the appropriate atoms, see libk.md" 7 7 say ' - $os={lin|fbsd|hai|osx…}' 8 8 say ' - $arch={x86|arm|ia64|mips…}' 9 9 say ' - $bits={|32|64…}' 10 10 exit 1