mirror of
https://github.com/apache/httpd.git
synced 2026-01-13 21:42:17 +03:00
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
14 lines
173 B
Bash
Executable File
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+"$@"}
|