diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-04-07 22:13:34 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-04-07 22:53:38 +0200 |
commit | 0473926a5b448c1a0b397d079c353f8406588c0d (patch) | |
tree | d47e77f560b62a700a8e9dbdc0de40f3863e343a /lib | |
parent | 7ccd68073ddc02abdd6d8fbfaefef5c42e4e8178 (diff) | |
download | samba-0473926a5b448c1a0b397d079c353f8406588c0d.tar.gz samba-0473926a5b448c1a0b397d079c353f8406588c0d.tar.bz2 samba-0473926a5b448c1a0b397d079c353f8406588c0d.zip |
update-external: Support updating dnspython.
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/update-external.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/update-external.sh b/lib/update-external.sh index 53748d8810..fc2443b77e 100755 --- a/lib/update-external.sh +++ b/lib/update-external.sh @@ -13,4 +13,9 @@ echo "Updating testtools..." bzr export "$WORKDIR/testtools" lp:testtools rsync -avz --delete "$WORKDIR/testtools/" "$TARGETDIR/testtools/" +echo "Updating dnspython..." +git clone git://www.dnspython.org/dnspython.git "$WORKDIR/dnspython" +rm -rf "$WORKDIR/dnspython/.git" +rsync -avz --delete "$WORKDIR/dnspython/" "$TARGETDIR/dnspython/" + rm -rf "$WORKDIR" |