summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorDavid Reid <dreid@apache.org>2000-09-24 12:40:05 +0000
committerDavid Reid <dreid@apache.org>2000-09-24 12:40:05 +0000
commitaa564c0a6999e618a1b3c9ac6761797620a5c95d (patch)
tree57f86f665303c6c88e6a8fe188934972fa2a94d2 /buildconf
parentb98f31a568f96ac2435605f06be0d572d7b8b936 (diff)
downloadhttpd-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-xbuildconf4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildconf b/buildconf
index 3e47e77cab..db3a1e8e9b 100755
--- a/buildconf
+++ b/buildconf
@@ -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