From 54ada642322b9f5ab0d507aff856fd1ea97c6259 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Tue, 9 Jun 2020 21:29:29 +0200 Subject: [PATCH] fix ~ update docs + fix Makefile after @rivy's recent changes --- GNUmakefile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 1e24d9445..01b234a47 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -255,7 +255,7 @@ use_default := 1 build-pkgs: 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 build-uutils: diff --git a/README.md b/README.md index 45b6843a7..80ec9d344 100644 --- a/README.md +++ b/README.md @@ -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 build the utilities as individual binaries, that is possible too. For example: ```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 ###