diff options
-rw-r--r-- | tools/ChangeLog | 4 | ||||
-rw-r--r-- | tools/gpgconf.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog index 6e8d92354..297e5eb4b 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,3 +1,7 @@ +2008-09-30 Werner Koch <[email protected]> + + * gpgconf.c (main) <aListDirs>: Print the bindir. + 2008-08-06 Marcus Brinkmann <[email protected]> * gpgconf-comp.c (gc_options_gpgsm): Change type of keyserver diff --git a/tools/gpgconf.c b/tools/gpgconf.c index bf9767146..9054e29b3 100644 --- a/tools/gpgconf.c +++ b/tools/gpgconf.c @@ -263,6 +263,8 @@ main (int argc, char **argv) get_outfp (&outfp); fprintf (outfp, "sysconfdir:%s\n", gc_percent_escape (gnupg_sysconfdir ())); + fprintf (outfp, "bindir:%s\n", + gc_percent_escape (gnupg_bindir ())); break; } |