1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/bash
# Download latest copy of autoconf macros
(
cd aclocal || exit 1
for file in shobj.m4 tcl.m4 versionscript.m4; do
rm -f "${file}"
wget -O "${file}.new" "http://rkeene.org/devel/autoconf/${file}" || continue
|
>
|
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/bash
# Download latest copy of autoconf macros
(
mkdir aclocal >/dev/null 2>/dev/null
cd aclocal || exit 1
for file in shobj.m4 tcl.m4 versionscript.m4; do
rm -f "${file}"
wget -O "${file}.new" "http://rkeene.org/devel/autoconf/${file}" || continue
|