From add82e1984118eabc6b3cd8b85927b17c4cdaf68 Mon Sep 17 00:00:00 2001 From: Anuradha Weeraman Date: Sun, 21 Jun 2020 21:51:44 -0400 Subject: [PATCH] Cosmetic fix to README.md (#33) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index eb899911f..2911edf94 100644 --- a/README.md +++ b/README.md @@ -55,17 +55,17 @@ improved release out there. After cloning this repo, cd to the top directory of it and run: ```sh -./bin/package make +bin/package make ``` If you have trouble or want to tune the binaries, you may pass additional compiler and linker flags by appending it to the command shown above. E.g.: ```sh -./bin/package make \ +bin/package make \ SHELL=/bin/bash CCFLAGS="-xc99 -D_XPG6 -m64 -xO4" LDFLAGS="-m64" ``` For more information run ```sh - bin/package help +bin/package help ``` Many other commands in this repo self-document via the `--help`, `--man` and `--html` options; those that do have no separate manual page. @@ -75,7 +75,7 @@ Many other commands in this repo self-document via the `--help`, `--man` and After compiling, you can run the regression tests. Start by reading the information printed by: ```sh -./bin/shtests --man +bin/shtests --man ``` ## What is ksh93?