1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-13 21:42:17 +03:00
Files
apache/buildconf
David Reid aa564c0a69 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
2000-09-24 12:40:05 +00:00

14 lines
173 B
Bash
Executable File

#!/bin/sh
BUILD_BASE=`pwd`
export BUILD_BASE
rm -f generated_lists
case "`uname`" in
*BSD/OS*)
./build/bsd_makefile;;
esac
${MAKE:-make} -f build/build.mk ${1+"$@"}