harec

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 815cc8180d03306100e834c1b4a8ac5dadb8bdf2
parent 9a66940d6bae9a415c1d06f4ea4cccec6f00e02e
Author: Sebastian <sebastian@sebsite.pw>
Date:   Sat, 22 Jan 2022 23:41:29 -0500

config.sh: Fix printf command

This commit fixes a printf command in config.sh to not a shell variable
within a format string.

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mconfig.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.sh b/config.sh @@ -152,7 +152,6 @@ run_configure() { exit 1 fi - printf "Creating $outdir/config.mk... " cat <<-EOF > "$outdir"/config.mk CC=$CC AS=$AS @@ -182,6 +181,7 @@ run_configure() { all: ${all} EOF + printf "Creating %s/config.mk... " "$outdir" for target in $all do