blob: faa24616cde12e4d4fb522d7f520cd1fc6d2c5f0 (
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"
INHIBIT_PACKAGE_STRIP = "1"
ALLOW_EMPTY_${PN} = "1"
ALLOW_EMPTY_${PN}-dev = "1"
PACKAGES =+ "${PN}-sourcetree"
FILES_${PN}-sourcetree = "${installdir}/*-tree"
INSANE_SKIP_${PN}-sourcetree = "True"
|