diff options
author | Jeff Trawick <trawick@apache.org> | 2002-06-05 13:59:26 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2002-06-05 13:59:26 +0200 |
commit | 20235e3688481409863dccc09bd406d9b1809e0c (patch) | |
tree | 3fd40ca33d01bc6687cfe8518ac895b3c597a327 /build/install-bindist.sh.in | |
parent | Oops. (diff) | |
download | apache2-20235e3688481409863dccc09bd406d9b1809e0c.tar.xz apache2-20235e3688481409863dccc09bd406d9b1809e0c.zip |
Fix apxs to allow it to work when the build directory is somewhere
besides server-root/build.
PR: 8453
Submitted by: a number of people hit this problem and offered hints or
partial fixes; Thom May and Pier Fumagalli had a patch to
apxs, a subset of which mostly fixed this problem; there
were hints in PRs 8453 and 9316
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95522 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/install-bindist.sh.in')
-rwxr-xr-x | build/install-bindist.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/install-bindist.sh.in b/build/install-bindist.sh.in index 9a2a9e7554..d3693ee6c4 100755 --- a/build/install-bindist.sh.in +++ b/build/install-bindist.sh.in @@ -120,7 +120,7 @@ else lcopy bindist/error $SR/error 755 644 fi -sed -e "s;^#!\@perlbin\@.*;#!$PERL;" -e "s;\@prefix\@;$SR;" \ +sed -e "s;^#!\@perlbin\@.*;#!$PERL;" -e "s;\@exp_installbuilddir\@;$SR/build;" \ support/apxs.in > $SR/bin/apxs PRE=`grep "^prefix = " bindist/build/config_vars.mk` PRE=`echo $PRE | sed -e "s;prefix = ;;"` |