From 31c44c4744be67159c7b98dc698233572febf083 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 19 Sep 2001 10:45:33 +0000 Subject: Adding the appropirate files might help... (These are part of the build_options patch). Andrew Bartlett (This used to be commit 4e5c7724b4e4c132b7b43104d3063d2f7357bae2) --- source3/script/build_env.sh | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 source3/script/build_env.sh (limited to 'source3/script') diff --git a/source3/script/build_env.sh b/source3/script/build_env.sh new file mode 100755 index 0000000000..8ae79da7b9 --- /dev/null +++ b/source3/script/build_env.sh @@ -0,0 +1,35 @@ +#!/bin/sh + +uname=`uname -a` +date=`date` +srcdir=$1 +builddir=$2 +compiler=$3 + + if [ ! $USER = "" ]; then + whoami=$USER + else + if [ ! $LOGNAME = "" ]; then + whoami=$LOGNAME + else + whoami=`whoai || id -un` + fi + fi + +host=`hostname` + +cat <