diff options
author | Ryan Bloom <rbb@apache.org> | 2000-12-20 00:33:54 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-12-20 00:33:54 +0100 |
commit | 7aac4f8615858cea7168cddebb2094f687ec4375 (patch) | |
tree | 5bf899bfe52d86cb40ca4b23e31544ad144ab630 /support/apxs.in | |
parent | Round out the Win32 build. Changes include: (diff) | |
download | apache2-7aac4f8615858cea7168cddebb2094f687ec4375.tar.xz apache2-7aac4f8615858cea7168cddebb2094f687ec4375.zip |
Stop searching in installdir/includes/apr.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87434 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 e2a0569741..457d843b1a 100644 --- a/support/apxs.in +++ b/support/apxs.in @@ -379,7 +379,7 @@ if ($opt_c) { $lo =~ s|\.c$|.lo|; my $la = $s; $la =~ s|\.c$|.la|; - push(@cmds, "libtool --silent --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR -I$CFG_INCLUDEDIR/apr $opt -c $s && touch $slo"); + push(@cmds, "libtool --silent --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR $opt -c $s && touch $slo"); push(@cmds, "libtool --silent --mode=link $CFG_CC $cflags -o $la -rpath $CFG_LIBEXECDIR -module -avoid-version $lo"); } |