The unified diff between revisions [c9f346c2..] and [bd016fa4..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'debian/gnade_common_build.gpr'

#
#
# patch "debian/gnade_common_build.gpr"
#  from [233a5d05712a018d5482010bd8ede7aa81f4e719]
#    to [be98c29551f52e91d5cdc6502d211de4567ddbd8]
#
============================================================
--- debian/gnade_common_build.gpr	233a5d05712a018d5482010bd8ede7aa81f4e719
+++ debian/gnade_common_build.gpr	be98c29551f52e91d5cdc6502d211de4567ddbd8
@@ -7,11 +7,21 @@ project GNADE_Common_Build is
    Libtype : Lib_Type := external ("LIBTYPE");

    for Languages use ("Ada");
+
+   --  At install time, Source_Dirs must reflect the build source
+   --  directories
    for Source_Dirs use ("../support");
+
+   --  Library_Dir must be a single directory containing all the
+   --  library files (*.ali, *.a, *.so) for all of the gnade packages.
+   for Library_Dir use "tmp";
+
+   --  Object_Dir is only used at build time; it must be distinct from
+   --  the other package object directories, and from the library
+   --  directory.
    for Object_Dir use "tmp/common-" & Libtype;

    for Library_Name use "gnadecommon";
-   for Library_Dir use "tmp";
    for Library_Kind use Libtype;

    --  Library_Version is not used when Library_Kind is "static"