summaryrefslogtreecommitdiff
path: root/apr-config.in
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2002-09-19 05:31:40 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2002-09-19 05:31:40 +0000
commit3a0f7edc6aeb269ee24ada0b41c2466b490f01e2 (patch)
treeaa7f2a2983ed530447e36d2f9df70dbf0b6452b5 /apr-config.in
parentfca747eb47b32e8c88f3a29e7906852488384c0f (diff)
downloadapr-3a0f7edc6aeb269ee24ada0b41c2466b490f01e2.tar.gz
Add --bindir option to apr-config so that users of APR have an idea where
apr-config will end up so that they can do later queries after apr-config is installed. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63878 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'apr-config.in')
-rw-r--r--apr-config.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/apr-config.in b/apr-config.in
index 62992e961..e2f879b21 100644
--- a/apr-config.in
+++ b/apr-config.in
@@ -87,6 +87,7 @@ Usage: apr-config [OPTION]
Known values for OPTION are:
--prefix[=DIR] change prefix to DIR
+ --bindir print location where binaries are installed
--cflags print C compiler flags
--cppflags print cpp flags
--includes print include information
@@ -157,6 +158,10 @@ while test $# -gt 0; do
echo $prefix
exit 0
;;
+ --bindir)
+ echo $bindir
+ exit 0
+ ;;
--cflags)
flags="$flags $CFLAGS"
;;