autotools: fix silly mistake in clang detection for buildinfo.txt

Follow-up to 0513f9f878 #18645

Closes #18666
This commit is contained in:
Viktor Szakats 2025-09-21 17:51:34 +02:00
parent e5d9c871f0
commit e21cc7844d
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -1492,7 +1492,7 @@ AC_DEFUN([CURL_PREPARE_BUILDINFO], [
if test "x$compiler_id" = 'xGNU_C'; then
curl_pflags="${curl_pflags} GCC"
fi
if "$compiler_id" = "APPLECLANG"; then
if test "$compiler_id" = "APPLECLANG"; then
curl_pflags="${curl_pflags} APPLE-CLANG"
elif test "$compiler_id" = "CLANG"; then
curl_pflags="${curl_pflags} LLVM-CLANG"