From 07fa17104a4e19a496b38c816270097ede84445b Mon Sep 17 00:00:00 2001 From: Mika Lindqvist Date: Tue, 25 May 2021 19:55:27 +0300 Subject: [PATCH] Fix warnings in configure * Don't assign contents of variable to itself * Quote strings containing "=" --- configure | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/configure b/configure index fd02a6fea..4e6645dc5 100755 --- a/configure +++ b/configure @@ -70,8 +70,6 @@ fi # set defaults before processing command line options LDCONFIG=${LDCONFIG-"ldconfig"} -LDFLAGS=${LDFLAGS} -LDSHAREDLIBC="${LDSHAREDLIBC}" DEFFILE= RC= RCFLAGS= @@ -209,9 +207,9 @@ show() { case "$*" in *$test.c*) - echo === $test.c === >> configure.log + echo "=== $test.c ===" >> configure.log cat $test.c >> configure.log - echo === >> configure.log;; + echo "===" >> configure.log;; esac echo $* >> configure.log } -- 2.47.3