diff options
author | Sascha Schumann <sascha@apache.org> | 2000-04-30 20:27:18 +0200 |
---|---|---|
committer | Sascha Schumann <sascha@apache.org> | 2000-04-30 20:27:18 +0200 |
commit | 6a0e55e69858bac414fcc22f0cade0e80cf3a86f (patch) | |
tree | eecc40e80b4bfc4e1f5247e38ff3f08531785387 /os/config.m4 | |
parent | Most of the support programs are created during the build, so we can expect (diff) | |
download | apache2-6a0e55e69858bac414fcc22f0cade0e80cf3a86f.tar.xz apache2-6a0e55e69858bac414fcc22f0cade0e80cf3a86f.zip |
Add VPATH support to Apache:
os/$(OS_DIR) is now equivalent to the old $(OS_DIR)
Necessary include paths are added only in VPATH mode.
Dependencies are stored in the build directory now.
They contain paths which depend on the current build,
and therefore they are not general.
Fixed two dependencies in main/Makefile.in.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85113 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/config.m4')
-rw-r--r-- | os/config.m4 | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/os/config.m4 b/os/config.m4 index d6e3949163..00c7ff6599 100644 --- a/os/config.m4 +++ b/os/config.m4 @@ -7,22 +7,21 @@ LIBPRE=lib case "$PLATFORM" in *beos*) OS="beos" - OS_DIR=os/$OS + OS_DIR=$OS ;; *pc-os2_emx*) LIBPRE="" OS="os2" - OS_DIR=os/$OS + OS_DIR=$OS ;; bs2000*) OS="unix" - OS_DIR=os/bs2000 # only the OS_DIR is platform specific. + OS_DIR=bs2000 # only the OS_DIR is platform specific. ;; *) OS="unix" - OS_DIR=os/$OS;; + OS_DIR=$OS;; esac - AC_MSG_RESULT($OS) -APACHE_FAST_OUTPUT($OS_DIR/Makefile) +APACHE_FAST_OUTPUT(os/$OS_DIR/Makefile) |