blob: df0f57fdbaf9ec7abc3d0e8f4c3372f8d1947c17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# We will be sourcing mozconfig files, which end up calling mk_add_options and
# ac_add_options with various settings. We only need the variable settings they
# create along the way.
mk_add_options() {
: do nothing
}
ac_add_options() {
: do nothing
}
topsrcdir="$SOURCE"
# Setup CC and CXX variables
. $topsrcdir/build/macosx/mozconfig.common
|