File 0001-Add-autoconfiscate.sh.patch of Package sblim-cmpi-samba
From 0b12eb138a5aa9192ce5858b31fd710b31f34c75 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Klaus=20K=C3=A4mpf?= <kkaempf@gmail.com>
Date: Fri, 21 Feb 2025 20:00:10 +0100
Subject: [PATCH 1/5] Add autoconfiscate.sh
---
autoconfiscate.sh | 12 ++++++++++++
1 file changed, 12 insertions(+)
create mode 100644 autoconfiscate.sh
diff --git a/autoconfiscate.sh b/autoconfiscate.sh
new file mode 100644
index 0000000..bd9005f
--- /dev/null
+++ b/autoconfiscate.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+#
+# Script to setup autoconf/automake build environment.
+# Run this first to create the configure script
+aclocal --force -I m4 &&
+autoheader --force &&
+libtoolize --force &&
+automake --add-missing --force-missing &&
+autoconf --force &&
+echo
+echo "You may now run ./configure"
+echo
--
2.48.1