2a222446b4
Recent versions of fakeroot have grown support for acl. We don't really need this since we don't use acls in Buildroot. However, it turns out that "cp -a" does something funky with acls, with the result that fakeroot without acl support looses the ownership and permissions on the copied file. "cp -a" may be (is even likely to be) used in a BR2_ROOTFS_POST_FAKEROOT_SCRIPT, so we need to support this. Note that host-acl itself depends on host-attr, so this pulls in two extra packages in each build. The impact on build time is about 10s. Cc: Andreas Naumann <dev@andin.de> Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
708 B
Makefile
23 lines
708 B
Makefile
################################################################################
|
|
#
|
|
# fakeroot
|
|
#
|
|
################################################################################
|
|
|
|
FAKEROOT_VERSION = 1.20.2
|
|
FAKEROOT_SOURCE = fakeroot_$(FAKEROOT_VERSION).orig.tar.bz2
|
|
FAKEROOT_SITE = http://snapshot.debian.org/archive/debian/20141005T221953Z/pool/main/f/fakeroot
|
|
|
|
HOST_FAKEROOT_DEPENDENCIES = host-acl
|
|
# Force capabilities detection off
|
|
# For now these are process capabilities (faked) rather than file
|
|
# so they're of no real use
|
|
HOST_FAKEROOT_CONF_ENV = \
|
|
ac_cv_header_sys_capability_h=no \
|
|
ac_cv_func_capset=no
|
|
|
|
FAKEROOT_LICENSE = GPLv3+
|
|
FAKEROOT_LICENSE_FILES = COPYING
|
|
|
|
$(eval $(host-autotools-package))
|