15 lines
235 B
Bash
15 lines
235 B
Bash
|
source $stdenv/setup
|
||
|
|
||
|
configureFlags="\
|
||
|
--with-store-dir=$storeDir --localstatedir=$stateDir \
|
||
|
--with-aterm=$aterm --with-bdb=$bdb \
|
||
|
--disable-init-state"
|
||
|
|
||
|
preConfigure() {
|
||
|
autoreconf
|
||
|
}
|
||
|
|
||
|
preConfigure=preConfigure
|
||
|
|
||
|
genericBuild
|