|
Revision 592, 301 bytes
(checked in by jajcus, 4 years ago)
|
- now libgadu is included in the jggtrans source tree, so we don't depend on strange and not-working-well-with-jggtrans libgadu builds in distributions.
|
- Property svn:executable set to
*
|
| Line | |
|---|
| 1 |
#!/bin/sh |
|---|
| 2 |
|
|---|
| 3 |
set -x |
|---|
| 4 |
|
|---|
| 5 |
( cd libxode ; ./autogen.sh ) || exit 1 |
|---|
| 6 |
( cd libgadu ; ./autogen.sh ) || exit 1 |
|---|
| 7 |
|
|---|
| 8 |
libtoolize --force || exit $? |
|---|
| 9 |
rm -f po/ChangeLog |
|---|
| 10 |
autopoint --force || exit $? |
|---|
| 11 |
touch po/Makefile.in m4/Makefile |
|---|
| 12 |
aclocal -I m4 || exit $? |
|---|
| 13 |
autoheader || exit $? |
|---|
| 14 |
automake -a || exit $? |
|---|
| 15 |
autoconf || exit $? |
|---|