mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 07:12:44 +00:00
Mark chmod as Unix-only until better Win support.
This commit is contained in:
parent
cbce549de7
commit
2c8ebb6215
2 changed files with 2 additions and 2 deletions
|
@ -6,6 +6,7 @@ build = "build.rs"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
unix = [
|
unix = [
|
||||||
|
"chmod",
|
||||||
"chroot",
|
"chroot",
|
||||||
"du",
|
"du",
|
||||||
"groups",
|
"groups",
|
||||||
|
@ -31,7 +32,6 @@ generic = [
|
||||||
"base64",
|
"base64",
|
||||||
"basename",
|
"basename",
|
||||||
"cat",
|
"cat",
|
||||||
"chmod",
|
|
||||||
"cksum",
|
"cksum",
|
||||||
"comm",
|
"comm",
|
||||||
"cp",
|
"cp",
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -28,7 +28,6 @@ PROGS := \
|
||||||
base64 \
|
base64 \
|
||||||
basename \
|
basename \
|
||||||
cat \
|
cat \
|
||||||
chmod \
|
|
||||||
cksum \
|
cksum \
|
||||||
comm \
|
comm \
|
||||||
cp \
|
cp \
|
||||||
|
@ -81,6 +80,7 @@ PROGS := \
|
||||||
whoami
|
whoami
|
||||||
|
|
||||||
UNIX_PROGS := \
|
UNIX_PROGS := \
|
||||||
|
chmod \
|
||||||
chroot \
|
chroot \
|
||||||
du \
|
du \
|
||||||
groups \
|
groups \
|
||||||
|
|
Loading…
Reference in a new issue