summaryrefslogtreecommitdiff
path: root/examples/application8
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2016-07-03 13:54:11 -0400
committerMatthias Clasen <mclasen@redhat.com>2016-07-03 13:54:11 -0400
commit22b6df025e5c17c0576826ddea62590532b9ce15 (patch)
treec0ef28ba3e7afb11c823ca870d251ae694a4e8d0 /examples/application8
parenta43fce058c3cb69dcca24e58a89d6e0151a35216 (diff)
downloadgtk+-22b6df025e5c17c0576826ddea62590532b9ce15.tar.gz
Fix example Makefiles
Put OBJS before LIBS on the commandline to make things work better. https://bugzilla.gnome.org/show_bug.cgi?id=768142
Diffstat (limited to 'examples/application8')
-rw-r--r--examples/application8/Makefile.example2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/application8/Makefile.example b/examples/application8/Makefile.example
index 917e3c70f0..306da637e6 100644
--- a/examples/application8/Makefile.example
+++ b/examples/application8/Makefile.example
@@ -25,7 +25,7 @@ resources.c: exampleapp.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --source
$(CC) -c -o $(@F) $(CFLAGS) $<
exampleapp: $(OBJS) gschemas.compiled
- $(CC) -o $(@F) $(LIBS) $(OBJS)
+ $(CC) -o $(@F) $(OBJS) $(LIBS)
clean:
rm -f org.gtk.exampleapp.gschema.valid