Overview
| Comment: | Updated to generate files |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
4d5caafa3d5025c1555f3e0d4304c4d9 |
| User & Date: | rkeene on 2014-05-01 21:56:10.143 |
| Other Links: | manifest | tags |
Context
|
2014-05-01
| ||
| 22:58 | Updated to create initial directory check-in: 07b3ee6214 user: rkeene tags: trunk | |
| 22:01 | Corrected disable-static check-in: 9ab52f4d92 user: rkeene tags: trunk | |
| 21:56 | Updated to generate files check-in: 4d5caafa3d user: rkeene tags: trunk | |
| 21:50 | Moved M4 fetching to autogen check-in: 131645cec4 user: rkeene tags: trunk | |
Changes
Modified build/autogen.sh
from [875a46fcf2]
to [257c5a2cf3].
1 2 3 4 5 6 7 8 9 |
#! /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}"
| | > > > > | < < < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#! /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
mv "${file}.new" "${file}"
done
)
for file in config.guess config.sub install-sh; do
rm -f "${file}"
done
aclocal -I aclocal
autoconf
automake -fca
rm -rf autom4te.cache
|