Diff

Differences From Artifact [01ca528618]:

To Artifact [855de803e9]:


1






2
3
4
5
6
7
#! /bin/bash







cat aclocal/*.m4 > aclocal.m4 || exit 1
autoconf || exit 1
rm -rf autom4te.cache/

exit 0

>
>
>
>
>
>






1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/bash

if [ -n "${VERS}" ]; then
	sed "s|@@VERS@@|${VERS}|g" configure.ac > configure.ac.new
	cat configure.ac.new > configure.ac
	rm -f configure.ac.new
fi

cat aclocal/*.m4 > aclocal.m4 || exit 1
autoconf || exit 1
rm -rf autom4te.cache/

exit 0