13 lines
339 B
Bash
Executable File
13 lines
339 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Copyright (c) The c-ares project and its contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
set -e
|
|
|
|
for x in `find . -name "ax_*.m4"` ; do
|
|
ax_name=`basename $x`
|
|
echo "Fetching latest ${ax_name}"
|
|
curl -s -o "${ax_name}" "https://raw.githubusercontent.com/autoconf-archive/autoconf-archive/refs/heads/master/m4/${ax_name}"
|
|
done
|