pre.sh at [49f1d0e042]

File build/pre.sh artifact f422eb34cc part of check-in 49f1d0e042


#! /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 || exit 1

	make distclean
) || exit 1