0005-do-not-build-extract-strings.patch 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. Do not build util/extract-strings
  2. Do not build util/extract-strings, as it will be built by host-libgtk3
  3. and installed in $(HOST_DIR)/usr/bin (thus avoiding the -lint linking
  4. issue with uClibc).
  5. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
  6. Index: gtk+-3.14.0/Makefile.am
  7. ===================================================================
  8. --- gtk+-3.14.0.orig/Makefile.am 2014-09-22 05:17:44.000000000 +0200
  9. +++ gtk+-3.14.0/Makefile.am 2014-09-25 16:08:32.000000000 +0200
  10. @@ -1,7 +1,7 @@
  11. ## Makefile.am for GTK+
  12. include $(top_srcdir)/Makefile.decl
  13. -SRC_SUBDIRS = util gdk gtk libgail-util modules demos tests testsuite examples
  14. +SRC_SUBDIRS = gdk gtk libgail-util modules demos tests testsuite examples
  15. SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros build
  16. ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
  17. Index: gtk+-3.14.0/gtk/Makefile.am
  18. ===================================================================
  19. --- gtk+-3.14.0.orig/gtk/Makefile.am 2014-09-22 05:09:39.000000000 +0200
  20. +++ gtk+-3.14.0/gtk/Makefile.am 2014-09-25 16:09:10.000000000 +0200
  21. @@ -1330,7 +1330,7 @@
  22. %.ui.h: %.ui
  23. $(AM_V_GEN) mkdir -p $(dir $@) \
  24. - && $(top_builddir)/util/extract-strings$(EXEEXT) $< > $@
  25. + && extract-strings$(EXEEXT) $< > $@
  26. #
  27. # rules to generate built sources
  28. Index: gtk+-3.14.0/gtk/inspector/Makefile.am
  29. ===================================================================
  30. --- gtk+-3.14.0.orig/gtk/inspector/Makefile.am 2014-09-04 20:11:33.000000000 +0200
  31. +++ gtk+-3.14.0/gtk/inspector/Makefile.am 2014-09-25 16:09:48.000000000 +0200
  32. @@ -114,7 +114,7 @@
  33. template_headers = $(templates:.ui=.ui.h)
  34. %.ui.h : %.ui
  35. - $(AM_V_GEN) $(top_builddir)/util/extract-strings$(EXEEXT) $< > $@
  36. + $(AM_V_GEN) extract-strings$(EXEEXT) $< > $@
  37. EXTRA_DIST += \
  38. inspector.gresource.xml \