summaryrefslogtreecommitdiffstats
path: root/scripts/update-m4.sh
blob: 9b6e99b8ca199b159a582a129aee26719c642fca (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

set -eu

sv_ax_m4_pfx='https://git.savannah.gnu.org/cgit/autoconf-archive.git/plain/m4'

for file in "$(dirname "${0}")/../m4/ax_"*; do
	wget -O "${file}" "${sv_ax_m4_pfx}/${file#*/}"
done