diff options
author | David Reid <dreid@apache.org> | 2000-09-24 12:40:05 +0000 |
---|---|---|
committer | David Reid <dreid@apache.org> | 2000-09-24 12:40:05 +0000 |
commit | aa564c0a6999e618a1b3c9ac6761797620a5c95d (patch) | |
tree | 57f86f665303c6c88e6a8fe188934972fa2a94d2 /buildconf | |
parent | b98f31a568f96ac2435605f06be0d572d7b8b936 (diff) | |
download | httpd-aa564c0a6999e618a1b3c9ac6761797620a5c95d.tar.gz |
We don't have config.guess until later in the build cycle, so change the
test to use uname. with this change a clean CVS copy will build using
./buildconf;./configure;make exactly like it should.
Thanks Sascha.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86310 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,8 +5,8 @@ export BUILD_BASE rm -f generated_lists -case "`./config.guess`" in -*bsdi*) +case "`uname`" in +*BSD/OS*) ./build/bsd_makefile;; esac |