From 63b7d8b8f4c2d1d7be7decab865b7e3f1acd377d Mon Sep 17 00:00:00 2001 From: Yedaya Katsman Date: Fri, 29 Aug 2025 17:09:00 +0300 Subject: [PATCH] autotools: make curl-config executable This was already done when building using CMake: https://github.com/curl/curl/blob/fa9151b41ad986e0514d99dd3fe149f26a7a57a3/CMakeLists.txt#L2391-L2394 Closes #18433 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2755bf9018..af005beffd 100644 --- a/configure.ac +++ b/configure.ac @@ -5536,9 +5536,9 @@ AC_CONFIG_FILES([\ tests/http/Makefile \ packages/Makefile \ packages/vms/Makefile \ - curl-config \ libcurl.pc ]) +AC_CONFIG_FILES([curl-config], [chmod +x curl-config]) AC_OUTPUT SUPPORT_PROTOCOLS_LOWER=`echo "$SUPPORT_PROTOCOLS" | tr A-Z a-z` -- 2.47.3