Overview
| Comment: | Updated to only update remote files if requested |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
9e821bdcac15994e4bf74472ee35081d |
| User & Date: | rkeene on 2014-12-13 23:02:29.121 |
| Other Links: | manifest | tags |
Context
|
2014-12-13
| ||
| 23:03 | Updated to work if ncurses and terminfo are split check-in: 76376fab1d user: rkeene tags: trunk | |
| 23:02 | Updated to only update remote files if requested check-in: 9e821bdcac user: rkeene tags: trunk | |
| 22:52 | Updated to latest autoconf macros check-in: 66b966ddc3 user: rkeene tags: trunk | |
Changes
Modified build/autogen.sh
from [3d66c1a312]
to [f9bb8ef467].
1 2 | #! /bin/bash | > | | | | | | | | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#! /bin/bash
if [ "$1" = '--update' ]; then
(
mkdir aclocal >/dev/null 2>/dev/null
cd aclocal || exit 1
for file in shobj.m4 tcl.m4; do
rm -f "${file}"
wget -O "${file}.new" "http://rkeene.org/devel/autoconf/${file}" || continue
mv "${file}.new" "${file}"
done
)
fi
cat aclocal/*.m4 > aclocal.m4 || exit 1
autoconf || exit 1
rm -rf autom4te.cache/
exit 0
|