From: <abe...@us...> - 2016-01-04 22:11:18
|
Revision: 7442 http://sourceforge.net/p/astlinux/code/7442 Author: abelbeck Date: 2016-01-04 22:11:16 +0000 (Mon, 04 Jan 2016) Log Message: ----------- fakeroot: fix build when libcap-dev is installed Ref: https://git.busybox.net/buildroot/commit/package?id=6fc5de4ef466b649b37a86e4f4994a667149dd80 Modified Paths: -------------- branches/1.0/package/fakeroot/fakeroot.mk Modified: branches/1.0/package/fakeroot/fakeroot.mk =================================================================== --- branches/1.0/package/fakeroot/fakeroot.mk 2016-01-04 16:44:57 UTC (rev 7441) +++ branches/1.0/package/fakeroot/fakeroot.mk 2016-01-04 22:11:16 UTC (rev 7442) @@ -10,6 +10,8 @@ # 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_func_capset=no +HOST_FAKEROOT_CONF_ENV = \ + ac_cv_header_sys_capability_h=no \ + ac_cv_func_capset=no $(eval $(call AUTOTARGETS,package,fakeroot,host)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |