Skip to content

Commit

Permalink
package/speechd: fix NLS build
Browse files Browse the repository at this point in the history
Fix the following NLS build failure raised since the addition of the
package in commit 9f4f8c5:

/home/buildroot/autobuild/run/instance-2/output-1/host/lib/gcc/arm-buildroot-linux-musleabihf/12.3.0/../../../../arm-buildroot-linux-musleabihf/bin/ld: ../../src/common/.libs/libcommon.a(libcommon_la-i18n.o): undefined reference to symbol 'libintl_bindtextdomain'

Fixes:
 - http://autobuild.buildroot.org/results/8ab13cf474d732c95a1da65592d950b24b3d474b

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
  • Loading branch information
ffontaine authored and jacmet committed Dec 3, 2023
1 parent 5eb79ff commit f6a7050
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package/speechd/speechd.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ SPEECHD_INSTALL_STAGING = YES
# speechd source code is released without configure script
SPEECHD_AUTORECONF = YES
SPEECHD_AUTOPOINT = YES
SPEECHD_DEPENDENCIES = host-pkgconf dotconf libglib2 libsndfile
SPEECHD_CONF_ENV = ac_cv_prog_HELP2MAN=""
SPEECHD_DEPENDENCIES = \
host-pkgconf dotconf libglib2 libsndfile $(TARGET_NLS_DEPENDENCIES)
SPEECHD_CONF_ENV = \
ac_cv_prog_HELP2MAN="" \
LIBS=$(TARGET_NLS_LIBS)
SPEECHD_CONF_OPTS = \
--disable-python \
--without-espeak \
Expand Down

0 comments on commit f6a7050

Please sign in to comment.