diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2002-05-14 03:06:18 +0000 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2002-05-14 03:06:18 +0000 |
commit | 88bb263632a2d70feee9494610ee5f5f2a798722 (patch) | |
tree | da8d2840a33f365a0d995eb812a96d92cfc0e035 /apr-config.in | |
parent | 857e50cf5e30d5e26800b8b83b2283e44c2d86c9 (diff) | |
download | apr-88bb263632a2d70feee9494610ee5f5f2a798722.tar.gz |
Always print the LA_FILE information even if the .la file doesn't exist
yet.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63394 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'apr-config.in')
-rw-r--r-- | apr-config.in | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/apr-config.in b/apr-config.in index a87cd3421..d1670cdc5 100644 --- a/apr-config.in +++ b/apr-config.in @@ -185,19 +185,10 @@ while test $# -gt 0; do fi ;; --link-libtool) - if test -f "$LA_FILE"; then - flags="$flags $LA_FILE" - elif test "$location" = "installed"; then - ### avoid using -L if libdir is a "standard" location like /usr/lib - flags="$flags -L$libdir -lapr" - else - flags="$flags -L$thisdir -lapr" - fi + flags="$flags $LA_FILE" ;; --apr-la-file) - if test -f "$LA_FILE"; then - flags="$flags $LA_FILE" - fi + flags="$flags $LA_FILE" ;; --apr-so-ext) echo "$APR_SO_EXT" |