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