diff options
author | Aaron Bannert <aaron@apache.org> | 2002-03-14 18:18:33 +0100 |
---|---|---|
committer | Aaron Bannert <aaron@apache.org> | 2002-03-14 18:18:33 +0100 |
commit | 4a86a96acc9365b585344d8b45261a5c0ce8b168 (patch) | |
tree | fb7528b6a01910c4365c8d952e42c040ebf3f860 /acinclude.m4 | |
parent | Switched to the new winsock header for NetWare (diff) | |
download | apache2-4a86a96acc9365b585344d8b45261a5c0ce8b168.tar.xz apache2-4a86a96acc9365b585344d8b45261a5c0ce8b168.zip |
Fix a comment about the /<target> appended to config.layout variables
postpended with a '+' character. We don't currently support --target
(and as Thom pointed out, --target means something completely different
to Autoconf). Also change the default for '+' replacement to 'apache2'
so 1.3 and 2.0 can coexist on such distributions.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93936 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 728bff454b..38c5e58698 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -341,7 +341,7 @@ AC_DEFUN(APACHE_LAYOUT,[ addtarget=yes fi if test "$addtarget" = "yes"; then - val="$val/apache" + val="$val/apache2" fi fi eval "$var='$val'" |