Rombobjörn

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Persson <bjorn@rombobjörn.se>2013-06-16 23:31:54 +0200
committerBjörn Persson <bjorn@rombobjörn.se>2013-06-16 23:31:54 +0200
commit12512e5d0367cf18df565ea0d42ed418b47b8667 (patch)
treea0de3ca6c915e6276534d440c6be2af528c4a8e0
parent50a9e74f305d106771552f20aafb7cd49d6df549 (diff)
Improved comments.
-rw-r--r--comfignat.gpr.in12
1 files changed, 7 insertions, 5 deletions
diff --git a/comfignat.gpr.in b/comfignat.gpr.in
index c459bf7..fdbdcba 100644
--- a/comfignat.gpr.in
+++ b/comfignat.gpr.in
@@ -57,7 +57,7 @@ abstract project Comfignat is
-- If Prefix, Exec_Prefix, Bindir, Libexecdir, Includedir and Libdir are
-- relative pathnames, then Base shall be the absolute pathname of the
-- directory that they are relative to. If those variables are absolute
- -- names, then Base shall be undefined.
+ -- pathnames, then Base shall be undefined.
#if Prefix'Defined then
Prefix := $Prefix;
@@ -77,7 +77,8 @@ abstract project Comfignat is
Bindir := Exec_Prefix & "/bin";
#end if;
Stage_Bindir := Prepath & Bindir;
- -- Programs intended to be run by users shall be installed in Stage_Bindir.
+ -- Programs that can be run from a command prompt shall be installed in
+ -- Stage_Bindir.
#if Libexecdir'Defined then
Libexecdir := $Libexecdir;
@@ -85,7 +86,7 @@ abstract project Comfignat is
Libexecdir := Exec_Prefix & "/libexec";
#end if;
Stage_Libexecdir := Prepath & Libexecdir;
- -- Programs intended to be run by other programs rather than by users shall
+ -- Programs that are only to be run by other programs, not by users, shall
-- be installed under Stage_Libexecdir.
#if Includedir'Defined then
@@ -94,8 +95,8 @@ abstract project Comfignat is
Includedir := Prefix & "/include";
#end if;
Stage_Includedir := Prepath & Includedir;
- -- Source files needed for compiling against a library shall be installed
- -- under Stage_Includedir.
+ -- Source files needed for compiling code that uses a library shall be
+ -- installed under Stage_Includedir.
#if Libdir'Defined then
Libdir := $Libdir;
@@ -104,5 +105,6 @@ abstract project Comfignat is
#end if;
Stage_Libdir := Prepath & Libdir;
-- Binary libraries shall be installed in Stage_Libdir.
+ -- ALI files shall be installed in a subdirectory of Stage_Libdir.
end Comfignat;