Differences From Artifact [d03c3443d7]:
- Executable file global/build-manpage.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: 1861) [annotate] [blame] [check-ins using]
To Artifact [132a7e50b4]:
- Executable file global/build-manpage.sh — part of check-in [e42b590b45] at 2019-08-24 23:02:13 on branch trunk — stop attempting to auto-detect system constants during build process, and maintain os/arch-specific tables instead (user: lexi, size: 1860) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 |
#!/usr/bin/env bash
(test -d global && test -f build.sh) || {
echo >&2 "($0) run [1m$me[21m from root of [1mlibk[21m source directory"
exit 1
}
source global/common.sh
reqpack cmark "generate documentation"
check gen "a directory for generated build dependencies"
|
| |
1 2 3 4 5 6 7 8 9 10 |
#!/usr/bin/env bash
(test -d global && test -f build.sh) || {
echo >&2 "($0) run [1m$0[21m from root of [1mlibk[21m source directory"
exit 1
}
source global/common.sh
reqpack cmark "generate documentation"
check gen "a directory for generated build dependencies"
|