1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

mkrelease: Update to work with Git instead of SVN.

This commit is contained in:
Andrew Kroeger 2008-03-28 21:55:09 -05:00
parent 2e14b4ea64
commit 66efff41a7

View File

@ -1,8 +1,7 @@
#!/bin/sh
TMPDIR=`mktemp samba-XXXXX`
rm $TMPDIR || exit 1
svn export . $TMPDIR || exit 1
TMPDIR=`mktemp -d samba-XXXXX`
(git archive --format=tar HEAD | (cd $TMPDIR/ ; tar xf -))
( cd $TMPDIR/source
./autogen.sh || exit 1