diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-01-05 12:43:43 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-01-05 12:45:31 +0100 |
commit | 38c3e5894565fe3f078b459387e56ee352c66665 (patch) | |
tree | 5b3c44c6a565689d115dd3759fd5135be9e9c270 /script/autobuild.py | |
parent | 5d8f916619b5324e33d4a1bc3c97d6cc784f4bb9 (diff) | |
download | samba-38c3e5894565fe3f078b459387e56ee352c66665.tar.gz |
script/autobuild.py: fix path to clean-source-tree.sh from within lib/tevent/
metze
Diffstat (limited to 'script/autobuild.py')
-rwxr-xr-x | script/autobuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index c6959a2b937..d62eb0ef93c 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -68,7 +68,7 @@ tasks = { ("make", "make -j", "text/plain"), ("install", "make install", "text/plain"), ("test", "make test", "text/plain"), - ("check-clean-tree", "../script/clean-source-tree.sh", "text/plain"), + ("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"), ("clean", "make clean", "text/plain") ], } |