diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2014-04-17 07:26:19 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-04-17 21:52:09 +0200 |
commit | 4e53d44976f224255ea62e4b9a004d52056139e8 (patch) | |
tree | 68a4d93adfab8a5c866da9ae268960760d0560d7 | |
parent | c5e50dabf8121bb77444c2c0588f86bd47860d92 (diff) | |
download | buildroot-4e53d44976f224255ea62e4b9a004d52056139e8.tar.gz buildroot-4e53d44976f224255ea62e4b9a004d52056139e8.zip |
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 <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/xbmc/xbmc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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 |