From: Bernd Kuhls Date: Thu, 17 Apr 2014 05:26:19 +0000 (+0200) Subject: xbmc: Fix compile error with missing host-gettext X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4e53d44976f224255ea62e4b9a004d52056139e8;p=buildroot.git xbmc: Fix compile error with missing host-gettext autoreconf -vif lib/cpluff autoreconf: Entering directory `lib/cpluff' autoreconf: running: autopoint --force Can't exec "autopoint": No such file or directory at /home/buildroot/output/host/usr/share/autoconf/Autom4te/FileUtils.pm line 345. autoreconf: failed to run autopoint: No such file or directory autoreconf: autopoint is needed because this package uses Gettext make[1]: *** [lib/cpluff/configure] Error 1 Signed-off-by: Bernd Kuhls Signed-off-by: Thomas Petazzoni --- diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk index 7453db5c90..1bfc17d5f4 100644 --- a/package/xbmc/xbmc.mk +++ b/package/xbmc/xbmc.mk @@ -129,7 +129,7 @@ endif # Add HOST_DIR to PATH for codegenerator.mk to find swig define XBMC_BOOTSTRAP - cd $(@D) && PATH=$(BR_PATH) ./bootstrap + cd $(@D) && PATH=$(BR_PATH) AUTOPOINT=/bin/true ./bootstrap endef XBMC_PRE_CONFIGURE_HOOKS += XBMC_BOOTSTRAP