]> git.ipfire.org Git - thirdparty/squid.git/commit
Fix whitespace shell bugs in configure library detection (#628)
authorAmos Jeffries <yadij@users.noreply.github.com>
Sun, 10 May 2020 10:29:24 +0000 (10:29 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Tue, 12 May 2020 09:47:15 +0000 (09:47 +0000)
commit8780c450486ce7717d6e5b952c455506227876de
treedc4b7897eca1f70e7372723f3d6156313ab6b6d0
parent699ade2d615ee10e0ca5955abf2d7f1328cbb9ca
Fix whitespace shell bugs in configure library detection (#628)

Whitespace around shell variable assign and append operators
results in those operations not being performed.
This caused the with_*, *_PATH and *_LIBS variables to not
be set to the correct path when a custom path is used.

Also, lack of condition on the *_CFLAGS assign can pollute
the compiler parameters with non-existent directories.
It should also have been an append like PATH and LIBS to
add the auto-detected value after any user-provided value
instead of overwriting.

Broken since master commit 2453140.
acinclude/squid-util.m4