1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

fix ~ update docs + fix Makefile after @rivy's recent changes

This commit is contained in:
Sylvestre Ledru 2020-06-09 21:29:29 +02:00 committed by Roy Ivy III
parent 7b452f3bfe
commit 54ada64232
2 changed files with 2 additions and 2 deletions

View file

@ -255,7 +255,7 @@ use_default := 1
build-pkgs: build-pkgs:
ifneq (${MULTICALL}, y) ifneq (${MULTICALL}, y)
${CARGO} build ${CARGOFLAGS} ${PROFILE_CMD} $(foreach pkg,$(EXES),-p $(pkg)) ${CARGO} build ${CARGOFLAGS} ${PROFILE_CMD} $(foreach pkg,$(EXES),-p uu_$(pkg))
endif endif
build-uutils: build-uutils:

View file

@ -84,7 +84,7 @@ $ cargo build --features "base32 cat echo rm" --no-default-features
If you don't even want to build the multicall binary and would prefer to just If you don't even want to build the multicall binary and would prefer to just
build the utilities as individual binaries, that is possible too. For example: build the utilities as individual binaries, that is possible too. For example:
```bash ```bash
$ cargo build -p base32 -p cat -p echo -p rm $ cargo build -p uu_base32 -p uu_cat -p uu_echo -p uu_rm
``` ```
### GNU Make ### ### GNU Make ###