[gimp] app: Reverse order of SUBDIRS



commit 071153124aa12a9a886ad271c0a58aaa1d653abb
Author: Martin Nordholts <martinn src gnome org>
Date:   Sat Sep 5 16:08:23 2009 +0200

    app: Reverse order of SUBDIRS
    
    The SUBDIRS var should be sorted on build-order, not link-order.

 app/Makefile.am |   44 +++++++++++++++++++++++---------------------
 1 files changed, 23 insertions(+), 21 deletions(-)
---
diff --git a/app/Makefile.am b/app/Makefile.am
index e41e495..c8a16d4 100644
--- a/app/Makefile.am
+++ b/app/Makefile.am
@@ -9,29 +9,31 @@ libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSIO
 libgimpthumb = $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la
 
 
-# Sort this by architectural depenendencies
+# Sort this by architectural depenendencies, lowest level at the top,
+# so that when e.g. changing a header-file the subdirs are built in
+# the right order
 SUBDIRS = \
-	tests		\
-	gui		\
-	menus		\
-	actions		\
-	dialogs		\
-	tools		\
-	display		\
-	widgets		\
-	pdb		\
-	file		\
-	plug-in		\
-	core		\
-	xcf		\
-	vectors		\
-	text		\
-	composite	\
-	gegl		\
-	paint		\
-	config		\
+	base		\
 	paint-funcs	\
-	base
+	config		\
+	paint		\
+	gegl		\
+	composite	\
+	text		\
+	vectors		\
+	xcf		\
+	core		\
+	plug-in		\
+	file		\
+	pdb		\
+	widgets		\
+	display		\
+	tools		\
+	dialogs		\
+	actions		\
+	menus		\
+	gui		\
+	tests
 
 if ENABLE_GIMP_CONSOLE
 bin_PROGRAMS = gimp-2.7 gimp-console-2.7



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]