summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2012-06-22 14:58:25 +0200
committerStefan Metzmacher <metze@samba.org>2012-06-22 15:16:44 +0200
commit688cda19ba68db8a7557ffe8cbf6e3c79eae74f9 (patch)
treebab88e994dbd714dc797877779d7e0bb857b3631 /script
parentea74131dc88e5fd0baf587cd6469a089cdc919a3 (diff)
downloadsamba-688cda19ba68db8a7557ffe8cbf6e3c79eae74f9.tar.gz
samba-688cda19ba68db8a7557ffe8cbf6e3c79eae74f9.tar.bz2
samba-688cda19ba68db8a7557ffe8cbf6e3c79eae74f9.zip
script/autobuild: fix path to random-sleep.sh
metze
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index 92fa41393c..ae58fcd34f 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -52,7 +52,7 @@ tasks = {
("check-clean-tree", "../script/clean-source-tree.sh", "text/plain"),
("clean", "make clean", "text/plain") ],
- "samba3-ctdb" : [ ("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
+ "samba3-ctdb" : [ ("random-sleep", "../script/random-sleep.sh 60 600", "text/plain"),
("autogen", "./autogen.sh", "text/plain"),
("configure", "./configure.developer ${PREFIX} --with-cluster-support --with-ctdb=../ctdb", "text/plain"),
("make basics", "make basics", "text/plain"),
@@ -110,7 +110,7 @@ tasks = {
("install", "make install", "text/plain")],
"ldb" : [
- ("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
+ ("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
("make", "make", "text/plain"),
("install", "make install", "text/plain"),
@@ -120,7 +120,7 @@ tasks = {
("clean", "make clean", "text/plain") ],
"tdb" : [
- ("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
+ ("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
("make", "make", "text/plain"),
("install", "make install", "text/plain"),
@@ -130,7 +130,7 @@ tasks = {
("clean", "make clean", "text/plain") ],
"ntdb" : [
- ("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
+ ("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
("make", "make", "text/plain"),
("install", "make install", "text/plain"),
@@ -140,7 +140,7 @@ tasks = {
("clean", "make clean", "text/plain") ],
"talloc" : [
- ("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
+ ("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
("make", "make", "text/plain"),
("install", "make install", "text/plain"),
@@ -150,7 +150,7 @@ tasks = {
("clean", "make clean", "text/plain") ],
"replace" : [
- ("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
+ ("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
("make", "make", "text/plain"),
("install", "make install", "text/plain"),
@@ -160,7 +160,7 @@ tasks = {
("clean", "make clean", "text/plain") ],
"tevent" : [
- ("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
+ ("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
("make", "make", "text/plain"),
("install", "make install", "text/plain"),
@@ -170,7 +170,7 @@ tasks = {
("clean", "make clean", "text/plain") ],
"pidl" : [
- ("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
+ ("random-sleep", "../script/random-sleep.sh 60 600", "text/plain"),
("configure", "perl Makefile.PL PREFIX=${PREFIX_DIR}", "text/plain"),
("touch", "touch *.yp", "text/plain"),
("make", "make", "text/plain"),