summaryrefslogtreecommitdiffstats
path: root/m4/CONFIG_FILES_EXEC.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/CONFIG_FILES_EXEC.m4')
-rw-r--r--m4/CONFIG_FILES_EXEC.m424
1 files changed, 24 insertions, 0 deletions
diff --git a/m4/CONFIG_FILES_EXEC.m4 b/m4/CONFIG_FILES_EXEC.m4
new file mode 100644
index 0000000..290ba21
--- /dev/null
+++ b/m4/CONFIG_FILES_EXEC.m4
@@ -0,0 +1,24 @@
+#
+# Copyright 2021 the Pacemaker project contributors
+#
+# The version control history for this file may have further details.
+#
+# This source code is licensed under the GNU General Public License version 2
+# or later (GPLv2+) WITHOUT ANY WARRANTY.
+
+# CONFIG_FILE_EXEC(FILE [...])
+#
+# Mark single FILE as configure-generated, and make it executable once created.
+#
+AC_DEFUN([CONFIG_FILE_EXEC], [AC_CONFIG_FILES([$1], [chmod +x "$1"])])
+
+# CONFIG_FILES_EXEC(FILE [...])
+#
+# Mark multiple FILEs as configure-generated, and make them executable.
+#
+AC_DEFUN([CONFIG_FILES_EXEC], [
+ m4_case([$#], [0], [],
+ [1], [CONFIG_FILE_EXEC([$1])],
+ [CONFIG_FILE_EXEC([$1])
+ CONFIG_FILES_EXEC(m4_shift($@))])
+])