|
Revision 1913, 392 bytes
(checked in by karpet, 2 years ago)
|
for all the world to see
|
- Property svn:executable set to
|
| Line | |
|---|
| 1 |
#! /bin/sh |
|---|
| 2 |
|
|---|
| 3 |
echo "$0 - for initialization of libswish3 build environemnt" |
|---|
| 4 |
echo " not needed for user building" |
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
#add --include-deps if you want to bootstrap with any other compiler than gcc |
|---|
| 8 |
#automake --add-missing --copy --include-deps |
|---|
| 9 |
|
|---|
| 10 |
set -x |
|---|
| 11 |
|
|---|
| 12 |
aclocal \ |
|---|
| 13 |
&& libtoolize --force --copy \ |
|---|
| 14 |
&& automake --add-missing --include-deps --copy --foreign \ |
|---|
| 15 |
&& autoconf \ |
|---|
| 16 |
&& rm -f config.cache |
|---|
| 17 |
|
|---|