blob: 593f0949692afdce6a5641497a82c1e505ec152d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
# Allow staging into machine specific dir
BASEPKG_HOST_SYS = "${MULTIMACH_HOST_SYS}"
# Search archdir for shlibs instead of machine dir due to above BASEPKG_HOST_SYS
SHLIBSDIR = "${STAGING_DIR}/${BASE_PACKAGE_ARCH}${HOST_VENDOR}-${HOST_OS}/shlibs"
PACKAGE_STRIP = "no"
ALLOW_EMPTY_${PN} = "1"
ALLOW_EMPTY_${PN}-dev = "1"
PACKAGES =+ "${PN}-sourcetree"
FILES_${PN}-sourcetree = "${installdir}/*-tree"
INSANE_SKIP_${PN}-sourcetree = "True"
|