]> git.sur5r.net Git - bacula/bacula/blob - kernsconfig
c8edf8918eb059c1b3fcd931ea948cca4484696d
[bacula/bacula] / kernsconfig
1 #!/bin/sh
2 #
3 # This is Kern's configure script for a test Bacula
4 #
5 CFLAGS="-g -O2 -Wall" ./configure \
6     --sbindir=$HOME/bacula/bin \
7     --sysconfdir=$HOME/bacula/bin \
8     --with-pid-dir=$HOME/bacula/bin/working \
9     --with-subsys-dir=$HOME/bacula/bin/working \
10     --enable-gnome \
11     --enable-smartalloc \
12     --with-mysql=$HOME/mysql \
13     --with-working-dir=$HOME/bacula/working \
14     --with-dump-email=$USER \
15     --with-job-email=$USER
16
17 exit 0