blob: 5a02d91d8abc899d5b70246f4f067c4f1a9de94f (
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 $@
|