blob: a217b2dfd2f74415c8fef1e9d1543f1232c3b34a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# chmod
Standalone musl-libc-based Linux port of FreeBSD `chmod` for Project Tick BSD/Linux Distribution.
## Status
Project layout is detached from the top-level FreeBSD build.
It builds as a standalone Linux-native utility.
## Build
```sh
gmake -f GNUmakefile
gmake -f GNUmakefile CC=musl-gcc
```
## Test
```sh
gmake -f GNUmakefile test
```
## Notes
- Mode parsing lives in local project code, not a shared compat layer.
- The current implementation keeps the original recursive traversal logic.
- Recursive walking no longer depends on `fts(3)`, so it builds with musl.
- Verified with `gmake -f GNUmakefile clean test` and `gmake -f GNUmakefile clean test CC=musl-gcc`.
|