comparison src/build-gettext.mk @ 6215:d18a5545df0d release

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.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 07 May 2022 12:01:10 +0200
parents d1f4f3739a52
children 72648e3263e4
comparison
equal deleted inserted replaced
6213:5f64fb928091 6215:d18a5545df0d
22 ## https://octave.discourse.group/t/octave-space-fails-to-build-gnutls/1573/19 22 ## https://octave.discourse.group/t/octave-space-fails-to-build-gnutls/1573/19
23 ## 23 ##
24 ## for a discussion about the CCACHE_NODIRECT setting below. 24 ## for a discussion about the CCACHE_NODIRECT setting below.
25 25
26 define $(PKG)_BUILD 26 define $(PKG)_BUILD
27 mkdir '$(1).build' 27 mkdir '$(1)/.build'
28 cd '$(1).build' && '$(1)/configure' \ 28 cd '$(1)/.build' && \
29 --prefix='$(BUILD_TOOLS_PREFIX)' \ 29 '$(1)/configure' \
30 --without-libexpat-prefix \ 30 --prefix='$(BUILD_TOOLS_PREFIX)' \
31 --without-libxml2-prefix \ 31 --without-libexpat-prefix \
32 $($(PKG)_CONFIGURE_OPTIONS) 32 --without-libxml2-prefix \
33 CCACHE_NODIRECT=1 $(MAKE) -C '$(1).build' -j '$(JOBS)' 33 --without-emacs \
34 $(MAKE) -C '$(1).build' -j 1 $(MXE_DISABLE_DOCS) install DESTDIR='$(3)' 34 $($(PKG)_CONFIGURE_OPTIONS)
35 CCACHE_NODIRECT=1 $(MAKE) -C '$(1)/.build' -j '$(JOBS)'
36 $(MAKE) -C '$(1)/.build' -j 1 $(MXE_DISABLE_DOCS) install DESTDIR='$(3)'
35 endef 37 endef