diff options
-rw-r--r-- | comfignat.gpr.in | 12 |
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; |