zeek/auxil/c-ares/m4/update_autoconf_archive.sh
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

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