Parent Directory
|
Revision Log
Revert last change, and add comment.
| 1 | #!/bin/bash |
| 2 | |
| 3 | # Generate Changelog by default if we in svn repository |
| 4 | if [[ -d .svn && $1 != -n ]] ; then |
| 5 | # For some reason svn do not give the full log if we do not |
| 6 | # update first ... |
| 7 | svn update |
| 8 | ./scripts/svn2cl.sh |
| 9 | fi |
| 10 | |
| 11 | aclocal-1.9 || exit 1 |
| 12 | libtoolize --automake -c -f || exit 1 |
| 13 | aclocal-1.9 || exit 1 |
| 14 | autoconf || exit 1 |
| 15 | autoheader || exit 1 |
| 16 | automake-1.9 -a -c || exit 1 |
| 17 | |
| 18 | if [[ -x ./test.sh ]] ; then |
| 19 | exec ./test.sh "$@" |
| 20 | fi |
| Name | Value |
|---|---|
| svn:eol-style | native |
| svn:executable | * |
| svn:keywords | Author Date Id Revision |
| ViewVC Help | |
| Powered by ViewVC 1.1.13 |