From: Clayton Shotwell Date: Tue, 10 Jan 2017 16:05:52 +0000 (-0600) Subject: package/ustr: fix ldconfig for host build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=18ed2dcf6c8a80804c31003ec7d4b1330d2b2b5b;p=buildroot.git package/ustr: fix ldconfig for host build The host build of the ustr package also needs to not run the ldconfig to prevent a build failure caused by the symlink creating a race condition. Related commit for target build change was 22069232. Signed-off-by: Clayton Shotwell Signed-off-by: Matt Weber Signed-off-by: Peter Korsgaard --- diff --git a/package/ustr/ustr.mk b/package/ustr/ustr.mk index b3de50b5a5..715914cab6 100644 --- a/package/ustr/ustr.mk +++ b/package/ustr/ustr.mk @@ -26,6 +26,7 @@ USTR_INSTALL_STAGING = YES USTR_MAKE_OPTS = all all-shared USTR_CONF_OPTS += LDCONFIG=/bin/true +HOST_USTR_CONF_OPTS += LDCONFIG=/bin/true $(eval $(autotools-package)) $(eval $(host-autotools-package))