Build py3 versions of other rpc modules
[samba.git] / source3 / script / build_env.sh
index 8ae79da7b96a0350c1b3da04660833202344612a..eb54f37aeda71a2a1757b325bffd488c12f110a2 100755 (executable)
@@ -1,25 +1,31 @@
 #!/bin/sh
 
+if [ $# -lt 3 ]
+then
+    echo "Usage: $0 srcdir builddir compiler"
+    exit 1
+fi
+
 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
+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 */
+/* This file is automatically generated with "make include/build_env.h". DO NOT EDIT */
 
 #ifndef _BUILD_ENV_H
 #define _BUILD_ENV_H