# HG changeset patch # User Markus Mützel # Date 1651919149 -7200 # Node ID 2443e2dc2640f414f542b230c0de3e3558416f67 # Parent b36066b148767a4edae624db41e02025718cc50e# Parent d18a5545df0d6031da8ba45e10d82603dbaec279 maint: Merge release to default. diff -r b36066b14876 -r 2443e2dc2640 src/build-gettext.mk --- a/src/build-gettext.mk Fri May 06 19:44:29 2022 +0200 +++ b/src/build-gettext.mk Sat May 07 12:25:49 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