Overview
| Comment: | Added missing call to autoheader |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
aee32d778dd70af30e101ae6f4282eda |
| User & Date: | rkeene on 2014-11-24 19:32:44.668 |
| Other Links: | manifest | tags |
Context
|
2014-11-24
| ||
| 19:32 | libconfig 0.3.1 check-in: 56e030b473 user: rkeene tags: 0.3.1, trunk | |
| 19:32 | Added missing call to autoheader check-in: aee32d778d user: rkeene tags: trunk | |
| 19:16 | libconfig 0.3.0 check-in: 60ed8780ab user: rkeene tags: trunk | |
Changes
Modified build/prep.sh
from [74e9d213ea]
to [87e484094d].
| ︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
)
for file in config.guess config.sub install-sh; do
rm -f "${file}"
done
aclocal -I aclocal
autoconf
automake -fca
rm -rf autom4te.cache
rm -f libconfig.vers
make srcdir=. -f Makefile.in ./libconfig.vers
| > | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
)
for file in config.guess config.sub install-sh; do
rm -f "${file}"
done
aclocal -I aclocal
autoheader
autoconf
automake -fca
rm -rf autom4te.cache
rm -f libconfig.vers
make srcdir=. -f Makefile.in ./libconfig.vers
|
| ︙ | ︙ |