Differences From Artifact [f947ea4178]:
- Executable file build/pre.sh — part of check-in [5996f7a35f] at 2010-09-26 04:37:52 on branch trunk — Added support for creating proper kitsh environment (user: rkeene, size: 221) [annotate] [blame] [check-ins using]
 
To 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]
 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17  | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18  | +  | 
#! /bin/bash
./kitcreator distclean
KITSHROOTDIR="$(ls -1d kitsh/buildsrc/kitsh-*/)"
export KITSHROOTDIR
(
	cd "${KITSHROOTDIR}" || exit 1
	autoconf; autoheader
	rm -rf autom4te.cache
	rm -f *~
	./configure
	make distclean
)
 |