[PC-BSD Commits] r811 - pcbsd/trunk/PBIsource
svn at pcbsd.org
svn at pcbsd.org
Wed Oct 31 09:59:47 PST 2007
Author: kris
Date: 2007-10-31 10:59:46 -0700 (Wed, 31 Oct 2007)
New Revision: 811
Modified:
pcbsd/trunk/PBIsource/pbi.ui.h
Log:
Fixed bug in PBI creator that caused a failure when using -extract
Modified: pcbsd/trunk/PBIsource/pbi.ui.h
===================================================================
--- pcbsd/trunk/PBIsource/pbi.ui.h 2007-10-31 16:11:19 UTC (rev 810)
+++ pcbsd/trunk/PBIsource/pbi.ui.h 2007-10-31 17:59:46 UTC (rev 811)
@@ -1790,7 +1790,7 @@
QFile file4( "extract.sh" );
if ( file4.open( IO_WriteOnly ) ) {
QTextStream stream4( &file4 );
- stream4 << "#!/bin/sh\nSKIP=`cat pbiskip`\ntail +${SKIP} pbilink | tar xpovj -C \"${1}\" -f - ";
+ stream4 << "#!/bin/sh\nSKIP=`cat pbiskip`\ntail +${SKIP} pbilink | ./lzma d -si -so | tar xpov -C \"${1}\" -f - ";
file4.close();
}
More information about the Commits
mailing list