summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Burrows <dburrows@debian.org>2010-07-26 15:59:50 -0500
committerDaniel Burrows <dburrows@debian.org>2010-07-26 15:59:50 -0500
commitf5d39b4092148f94f1ff8ab0faff7c92b4379d4d (patch)
tree6b774a1f46a94946bf86e3b3b9b51863ae5cff9b /src
parent4d604756dde24afa816eccb133788d624e74f14c (diff)
downloadaptitude-f5d39b4092148f94f1ff8ab0faff7c92b4379d4d.tar.gz
Fix an incorrect build order in src/generic/.
"util" has to be built before "apt"; fixed this and added a note about it. Also, split the subdirectories onto separate lines in order to be nicer to the VCS.
Diffstat (limited to 'src')
-rw-r--r--src/generic/Makefile.am12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/generic/Makefile.am b/src/generic/Makefile.am
index d741746f..ccfa2bb3 100644
--- a/src/generic/Makefile.am
+++ b/src/generic/Makefile.am
@@ -1,3 +1,13 @@
MAINTAINERCLEANFILES=Makefile.in
-SUBDIRS = apt controllers problemresolver util views
+# Order matters here. Known dependencies are listed below, but there
+# may be others that aren't declared. "a -> b" means that "a"
+# requires "b" and hence "b" must come before "a".
+#
+# apt -> util
+SUBDIRS = \
+ util \
+ apt \
+ controllers \
+ problemresolver \
+ views