From 348ee92764a3d1dbb93be47c9276a95eb86776d8 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 21 Jul 2025 14:37:41 +0900 Subject: [PATCH] configure.ac: Expand AC_CONFIG_FILES to fix a race. The commands apparently run for each file listed, or something similar, leading to: configure: creating ./config.status config.status: creating test/agent/Makefile chmod: cannot access 'test/agent/pre-inst-env': No such file or directory chmod: cannot access 'test/agent/scenarios/bulk-calls/run-scenario': No such file or directory config.status: creating test/agent/pre-inst-env chmod: cannot access 'test/agent/scenarios/bulk-calls/run-scenario': No such file or directory * configure.ac [ENABLE_AGENT]: Separate AC_CONFIG_FILES uses per file. Change-Id: Ib283955b73540248e09bf31ef44ef3d178b216fa --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 66e52ee62..a56c35f58 100644 --- a/configure.ac +++ b/configure.ac @@ -61,11 +61,11 @@ AC_ARG_ENABLE([agent], [Build agent])) AM_CONDITIONAL([ENABLE_AGENT], [test "x$enable_agent" = "xyes"]) AM_COND_IF([ENABLE_AGENT], - [AC_CONFIG_FILES([test/agent/Makefile - test/agent/pre-inst-env:test/agent/build-aux/pre-inst-env.in - test/agent/scenarios/bulk-calls/run-scenario], - [chmod +x test/agent/pre-inst-env - chmod +x test/agent/scenarios/bulk-calls/run-scenario])]) + [AC_CONFIG_FILES([test/agent/Makefile]) + AC_CONFIG_FILES([test/agent/pre-inst-env:test/agent/build-aux/pre-inst-env.in], + [chmod +x test/agent/pre-inst-env]) + AC_CONFIG_FILES([test/agent/scenarios/bulk-calls/run-scenario], + [chmod +x test/agent/scenarios/bulk-calls/run-scenario])]) AC_ARG_ENABLE([tracepoints], AS_HELP_STRING([--enable-tracepoints], [Enable tracepoints]))