summaryrefslogtreecommitdiffstats
path: root/m4/dl.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-01-14 15:03:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2022-01-14 15:03:48 +0000
commitbe956cd27353a4bb585b1a648e8469cf7adb5edf (patch)
treea473793c3fd59ace461f23a8d75d9ca29a82b4ff /m4/dl.sh
parentInitial commit. (diff)
downloaddnswire-be956cd27353a4bb585b1a648e8469cf7adb5edf.tar.xz
dnswire-be956cd27353a4bb585b1a648e8469cf7adb5edf.zip
Adding upstream version 0.2.0.upstream/0.2.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'm4/dl.sh')
-rwxr-xr-xm4/dl.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/m4/dl.sh b/m4/dl.sh
new file mode 100755
index 0000000..1d8d9f7
--- /dev/null
+++ b/m4/dl.sh
@@ -0,0 +1,9 @@
+#!/bin/sh -e
+
+m4_files="ax_prepend_flag.m4 ax_append_flag.m4 ax_cflags_warn_all.m4
+ ax_require_defined.m4 ax_compiler_vendor.m4"
+
+for ax in $m4_files; do
+ rm -f "$ax"
+ wget -O "$ax" "http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/$ax"
+done