From 296ff486e41d309493c9ddb195578cb6355e2b36 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 23 Sep 2010 17:29:53 -0700 Subject: Check in configure/Makefile for those projects that have waf as primary build system. --- source4/configure | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 source4/configure (limited to 'source4/configure') diff --git a/source4/configure b/source4/configure new file mode 100755 index 0000000000..fbd81fe1c5 --- /dev/null +++ b/source4/configure @@ -0,0 +1,14 @@ +#!/bin/sh + +PREVPATH=`dirname $0` + +WAF=../buildtools/bin/waf + +# using JOBS=1 gives maximum compatibility with +# systems like AIX which have broken threading in python +JOBS=1 +export JOBS + +cd . || exit 1 +$WAF configure "$@" || exit 1 +cd $PREVPATH -- cgit