diff options
author | Ryan Bloom <rbb@apache.org> | 2000-11-22 21:35:56 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-11-22 21:35:56 +0100 |
commit | 8ce821cbfa80355d1d4f9e6b52d116d93da2742a (patch) | |
tree | 2df116b38eacbae5eb5567f09dafe234ed97fe9a /support/apxs.in | |
parent | Addition of BindAddress and small cleanups of upgrading/new features docs. (diff) | |
download | apache2-8ce821cbfa80355d1d4f9e6b52d116d93da2742a.tar.xz apache2-8ce821cbfa80355d1d4f9e6b52d116d93da2742a.zip |
Add the ability for apxs to install both libtool generated and non-libtool
generated shared objects.
Submitted by: Jon Travis <jtravis@covalent.net>
Reviewed by: Ryan Bloom
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87070 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/apxs.in')
-rw-r--r-- | support/apxs.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/apxs.in b/support/apxs.in index 11f105ed5a..e2a0569741 100644 --- a/support/apxs.in +++ b/support/apxs.in @@ -405,7 +405,7 @@ if ($opt_i or $opt_e) { my @cmds = (); my $f; foreach $f (@args) { - if ($f !~ m|\.la$|) { + if ($f !~ m#(\.so$|\.la$)#) { print STDERR "apxs:Error: file $f is not a shared object\n"; exit(1); } |