mirror of
https://github.com/sailfishos/ofono
synced 2025-12-02 23:51:10 +08:00
This uses plain files in /var/lib/ofono for storing contents of the operator lists to avoid possibly numerous queries to the SIM on every startup. Files are indexed with IMSI. I'm not 100% sure about the autoconf magic. Users need to rerun bootstrap-configure after applying this. Depends on [PATCH] Return SIM file access conditions from read_file_info.
17 lines
305 B
Bash
Executable File
17 lines
305 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DIR="$(dirname "$0")"
|
|
|
|
if [ -f config.status ]; then
|
|
make maintainer-clean
|
|
fi
|
|
|
|
(cd "$DIR" && ./bootstrap) && \
|
|
"$DIR/configure" --enable-maintainer-mode \
|
|
--enable-debug \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--sysconfdir=/etc \
|
|
--disable-datafiles \
|
|
--localstatedir=/var
|