1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/source4/script/build_env.sh
Andrew Tridgell ef2e26c91b first public release of samba4 code
(This used to be commit b0510b5428)
2003-08-13 01:53:07 +00:00

36 lines
672 B
Bash

#!/bin/sh
uname=`uname -a`
date=`date`
srcdir=$1
builddir=$2
compiler=$3
if [ ! "x$USER" = "x" ]; then
whoami=$USER
else
if [ ! "x$LOGNAME" = "x" ]; then
whoami=$LOGNAME
else
whoami=`whoami || id -un`
fi
fi
host=`hostname`
cat <<EOF
/* This file is automatically generated with "make build_env". DO NOT EDIT */
#ifndef _BUILD_ENV_H
#define _BUILD_ENV_H
#define BUILD_ENV_UNAME "${uname}"
#define BUILD_ENV_DATE "${date}"
#define BUILD_ENV_SRCDIR "${srcdir}"
#define BUILD_ENV_BUILDDIR "${builddir}"
#define BUILD_ENV_USER "${whoami}"
#define BUILD_ENV_HOST "${host}"
#define BUILD_ENV_COMPILER "${compiler}"
#endif /* _BUILD_ENV_H */
EOF