Differences From Artifact [6750e7ca3f]:
- Executable file
build/pre.sh
— part of check-in
[727034b4dd]
at
2010-09-26 04:37:58
on branch trunk
— KitCreator 0.0.2.x
Removed generated files from repository
Minor cleanup of configure activities in kitsh (user: rkeene, size: 231) [annotate] [blame] [check-ins using]
To Artifact [f422eb34cc]:
- Executable file
build/pre.sh
— part of check-in
[65a6c41656]
at
2010-09-26 04:39:23
on branch trunk
— KitCreator 0.0.6.x
Updated pre-release build script to error out if configure fails. (user: rkeene, size: 251) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
8 9 10 11 12 13 14 |
(
cd "${KITSHROOTDIR}" || exit 1
autoconf; autoheader
rm -rf autom4te.cache
rm -f *~
| | | | 8 9 10 11 12 13 14 15 16 17 18 |
(
cd "${KITSHROOTDIR}" || exit 1
autoconf; autoheader
rm -rf autom4te.cache
rm -f *~
./configure || exit 1
make distclean
) || exit 1
|