about summary refs log tree commit diff
path: root/test/build/subversion-build.sh
blob: cc1eba214e4fb40441eb0c837c470932d9cbca65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

export PATH=/bin:/usr/bin

export LDFLAGS=-s

top=`pwd`
tar xvfz $src || exit 1
cd subversion-* || exit 1
./configure --prefix=$top --with-ssl || exit 1
make || exit 1
make install || exit 1
cd $top || exit 1
rm -rf subversion-* || exit 1