# HG changeset patch # User Markus Mützel # Date 1651917670 -7200 # Node ID d18a5545df0d6031da8ba45e10d82603dbaec279 # Parent 5f64fb928091060e3efcc0871a62c1c5e46a10d7 build-gettext: Don't build emacs bindings. * src/build-gettext.mk: The `emacs` installed on the build system might be incompatible with the STL built by build-gcc. We probably don't need the emacs bindings for the `gettext` build tool anyway. So skip building those bindings. diff -r 5f64fb928091 -r d18a5545df0d src/build-gettext.mk --- a/src/build-gettext.mk Fri May 06 19:36:10 2022 +0200 +++ b/src/build-gettext.mk Sat May 07 12:01:10 2022 +0200 @@ -24,12 +24,14 @@ ## for a discussion about the CCACHE_NODIRECT setting below. define $(PKG)_BUILD - mkdir '$(1).build' - cd '$(1).build' && '$(1)/configure' \ - --prefix='$(BUILD_TOOLS_PREFIX)' \ - --without-libexpat-prefix \ - --without-libxml2-prefix \ - $($(PKG)_CONFIGURE_OPTIONS) - CCACHE_NODIRECT=1 $(MAKE) -C '$(1).build' -j '$(JOBS)' - $(MAKE) -C '$(1).build' -j 1 $(MXE_DISABLE_DOCS) install DESTDIR='$(3)' + mkdir '$(1)/.build' + cd '$(1)/.build' && \ + '$(1)/configure' \ + --prefix='$(BUILD_TOOLS_PREFIX)' \ + --without-libexpat-prefix \ + --without-libxml2-prefix \ + --without-emacs \ + $($(PKG)_CONFIGURE_OPTIONS) + CCACHE_NODIRECT=1 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' + $(MAKE) -C '$(1)/.build' -j 1 $(MXE_DISABLE_DOCS) install DESTDIR='$(3)' endef