summaryrefslogtreecommitdiff
path: root/buildtools/scripts/configure.waf
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-02-07 14:55:18 +1100
committerAndrew Tridgell <tridge@samba.org>2011-02-07 15:03:40 +1100
commit2e520ca91180920e4c8b71be4eaa7fabb56d2a12 (patch)
tree5b728afb394e1a703f1586f8975b03cc34aa41d5 /buildtools/scripts/configure.waf
parent8b8caac6d0ac980e59bc5bcbfb06502deebb9f42 (diff)
downloadsamba-2e520ca91180920e4c8b71be4eaa7fabb56d2a12.tar.gz
build: removed unused build scripts
each library has its own configure/Makefile now Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'buildtools/scripts/configure.waf')
-rwxr-xr-xbuildtools/scripts/configure.waf14
1 files changed, 0 insertions, 14 deletions
diff --git a/buildtools/scripts/configure.waf b/buildtools/scripts/configure.waf
deleted file mode 100755
index a7d8d1dbd64..00000000000
--- a/buildtools/scripts/configure.waf
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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 BUILDPATH || exit 1
-$WAF configure "$@" || exit 1
-cd $PREVPATH