diff options
author | Joe Orton <jorton@apache.org> | 2018-05-22 10:36:51 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2018-05-22 10:36:51 +0200 |
commit | 92cdeca71a4a22a66e00b65290a36730661df1da (patch) | |
tree | dc72d05157e430a80722c418fe56321da5ddcf68 /Makefile.in | |
parent | Fix "make check" to be able to find ab, creating a "bin" inside the (diff) | |
download | apache2-92cdeca71a4a22a66e00b65290a36730661df1da.tar.xz apache2-92cdeca71a4a22a66e00b65290a36730661df1da.zip |
* Makefile.in (check-binaries): Split out binaries to separate targets
so repeated "make check" still works.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1832013 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index d4f686d510..b4d1e7524a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -406,8 +406,12 @@ check-conf: check-dirs: @mkdir -p check/htdocs check/logs check/bin -check-binaries: check/bin/apxs +check-binaries: check/bin/apxs check/bin/httpd check/bin/ab + +check/bin/httpd: ln -s $(top_builddir)/httpd check/bin/httpd + +check/bin/ab: ln -s $(top_builddir)/support/ab check/bin/ab # A version of apxs with the PREFIX overridden to point inside the install root |