comparison src/gettext.mk @ 4302:3d168da55e47

disable instakll of docs * Makefile.in: create MXE_DISABLE_DOCS target list * src/curl.mk: add MXE_DISABLE_DOCS to install * src/dbus.mk: add MXE_DISABLE_DOCS to install * src/fftw.mk: add MXE_DISABLE_DOCS to install * src/gettext.mk: add MXE_DISABLE_DOCS to install, remove installed html docs * src/graphicsmagick.mk: delete doc files in install * src/hdf5.mk: delete examples in install
author John D
date Fri, 30 Dec 2016 21:28:46 -0500
parents 3bdf8d6defe1
children d5a5b8e659de
comparison
equal deleted inserted replaced
4301:b6819fef128f 4302:3d168da55e47
25 --enable-threads=win32 \ 25 --enable-threads=win32 \
26 --without-libexpat-prefix \ 26 --without-libexpat-prefix \
27 --without-libxml2-prefix \ 27 --without-libxml2-prefix \
28 CONFIG_SHELL=$(SHELL) && $(CONFIGURE_POST_HOOK) 28 CONFIG_SHELL=$(SHELL) && $(CONFIGURE_POST_HOOK)
29 $(MAKE) -C '$(1)/gettext-runtime' -j '$(JOBS)' 29 $(MAKE) -C '$(1)/gettext-runtime' -j '$(JOBS)'
30 $(MAKE) -C '$(1)/gettext-runtime' -j 1 install DESTDIR='$(3)' 30 $(MAKE) -C '$(1)/gettext-runtime' -j 1 $(MXE_DISABLE_DOCS) install DESTDIR='$(3)'
31 31
32 cd '$(1)/gettext-tools' && ./configure \ 32 cd '$(1)/gettext-tools' && ./configure \
33 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ 33 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
34 $(ENABLE_SHARED_OR_STATIC) \ 34 $(ENABLE_SHARED_OR_STATIC) \
35 --prefix='$(HOST_PREFIX)' \ 35 --prefix='$(HOST_PREFIX)' \
37 --without-libexpat-prefix \ 37 --without-libexpat-prefix \
38 --without-libxml2-prefix \ 38 --without-libxml2-prefix \
39 $(if $(filter msvc,$(MXE_SYSTEM)),ac_cv_func_memset=yes) \ 39 $(if $(filter msvc,$(MXE_SYSTEM)),ac_cv_func_memset=yes) \
40 CONFIG_SHELL=$(SHELL) && $(CONFIGURE_POST_HOOK) 40 CONFIG_SHELL=$(SHELL) && $(CONFIGURE_POST_HOOK)
41 $(MAKE) -C '$(1)/gettext-tools' -j '$(JOBS)' 41 $(MAKE) -C '$(1)/gettext-tools' -j '$(JOBS)'
42 $(MAKE) -C '$(1)/gettext-tools' -j 1 install DESTDIR='$(3)' bin_PROGRAMS= 42 $(MAKE) -C '$(1)/gettext-tools' -j 1 install DESTDIR='$(3)' $(MXE_DISABLE_DOCS) bin_PROGRAMS=
43 if [ "$(ENABLE_DEP_DOCS)" == "no" ]; then \
44 rm -rf $(3)$(HOST_PREFIX)/share/doc/$(PKG); \
45 fi
43 endef 46 endef