blob: a2c156aa014d9a15381dad5fa342063dd98ee877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/make -f
upstream_source = glib
include ../source.mk
nop:
@:
build:
oh-autoconfigure -- \
--enable-static \
--disable-selinux \
--disable-fam \
--disable-xattr \
--disable-libelf \
--with-pcre=system
oh-autobuild
#if [ 'x$(OPK_BUILD_ARCH)' = 'x$(OPK_HOST_ARCH)' ]; then \
# oh-autobuild -T check; \
#fi
touch $@
|