diff options
author | Björn Persson <Bjorn@Rombobjörn.se> | 2015-07-01 23:39:13 +0200 |
---|---|---|
committer | Björn Persson <Bjorn@Rombobjörn.se> | 2015-07-01 23:39:13 +0200 |
commit | 929b6ada115224ee4e9f1a147e7dd95819b78024 (patch) | |
tree | 660f4827f75f7f383e4d2197bef2d2d7e7271af7 /comfignat.gpr.gp | |
parent | 4bd9fcc8acbd04b92100f49cb4d7b528d69cd1a2 (diff) |
Improved the documentation of directory variables.
Diffstat (limited to 'comfignat.gpr.gp')
-rw-r--r-- | comfignat.gpr.gp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/comfignat.gpr.gp b/comfignat.gpr.gp index 132947c..545352b 100644 --- a/comfignat.gpr.gp +++ b/comfignat.gpr.gp @@ -1,5 +1,5 @@ -- Comfignat configuration variables for GNAT project files --- Copyright 2013 - 2014 B. Persson, Bjorn@Rombobeorn.se +-- Copyright 2013 - 2015 B. Persson, Bjorn@Rombobeorn.se -- -- This material is provided as is, with absolutely no warranty expressed -- or implied. Any use is at your own risk. @@ -84,7 +84,7 @@ abstract project Comfignat is -- Programs that can be run from a command prompt are in Bindir. This is -- usually the same directory that the program itself is in, so this - -- variable is probably useful only to programs in Libexecdir. + -- variable is probably useful only to programs under Libexecdir. #if Bindir'Defined then Bindir := $Bindir; #else @@ -272,8 +272,9 @@ abstract project Comfignat is Stage_Bindir := Stagedir & Bindir; #end if; - -- Programs that are only to be run by other programs, not by users, shall - -- be installed under Stage_Libexecdir. + -- Programs that are only intended to be run by other programs, not by + -- users, shall be installed under an application-specific subdirectory of + -- Stage_Libexecdir. #if Stage_Libexecdir'Defined then Stage_Libexecdir := $Stage_Libexecdir; #else |