svn commit: samba r23262 - in branches/SAMBA_4_0/source/script: .

abartlet at samba.org abartlet at samba.org
Thu May 31 05:37:53 GMT 2007


Author: abartlet
Date: 2007-05-31 05:37:52 +0000 (Thu, 31 May 2007)
New Revision: 23262

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=23262

Log:
Fix mkrelease.sh to work in the right directories

Modified:
   branches/SAMBA_4_0/source/script/mkrelease.sh


Changeset:
Modified: branches/SAMBA_4_0/source/script/mkrelease.sh
===================================================================
--- branches/SAMBA_4_0/source/script/mkrelease.sh	2007-05-31 05:05:45 UTC (rev 23261)
+++ branches/SAMBA_4_0/source/script/mkrelease.sh	2007-05-31 05:37:52 UTC (rev 23262)
@@ -4,9 +4,8 @@
 
 svn export . samba-$VERSION || exit 1
 
-cd samba-$VERSION/source
-./autogen.sh || exit 1
-./configure || exit 1
-make dist  || exit 1
-
-tar -zcf samba-$VERSION.tar.gz samba-$VERSION
+( cd samba-$VERSION/source
+ ./autogen.sh || exit 1
+ ./configure || exit 1
+ make dist  || exit 1
+) && tar -zcf samba-$VERSION.tar.gz samba-$VERSION



More information about the samba-cvs mailing list