diff options
author | Jeff Trawick <trawick@apache.org> | 2001-12-15 14:56:36 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-12-15 14:56:36 +0100 |
commit | 7dc8e9bfabb8ab5f67aadf91a615099eba22d503 (patch) | |
tree | 8c654e9867576b9758ade893e5691b56171eb153 /support/Makefile.in | |
parent | Fixed the logic for detecting sentinel or EOS in send_parsed_content (diff) | |
download | apache2-7dc8e9bfabb8ab5f67aadf91a615099eba22d503.tar.xz apache2-7dc8e9bfabb8ab5f67aadf91a615099eba22d503.zip |
Move any load library path environment variables out of
apachectl and into a separate environment variable file which
can be more easily tailored by the admin. The environment
variable file as built by Apache may have additional system-
specific settings. For example, on OS/390 we tailor the heap
settings to allow lots of threads.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92490 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/Makefile.in')
-rw-r--r-- | support/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/support/Makefile.in b/support/Makefile.in index c3475bf1fa..8f34369d24 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -21,6 +21,12 @@ install: chmod 755 $(sbindir)/$$i; \ fi ; \ done + @if test -f "$(builddir)/envvars-std"; then \ + cp -p envvars-std $(sbindir); \ + if test ! -f $(sbindir)/envvars; then \ + cp -p envvars-std $(sbindir)/envvars ; \ + fi ; \ + fi htpasswd_OBJECTS = htpasswd.lo htpasswd: $(htpasswd_OBJECTS) |