Update dump option to use -D instead of -d

git-svn-id: https://smali.googlecode.com/svn/trunk@706 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2010-04-16 07:25:54 +00:00
parent 6a7f2e2d24
commit 3e4c1193cf

View File

@ -30,7 +30,7 @@ import java.util.List;
* Assembles files in the smali assembly language
*
* @goal assemble
*
*
* @phase compile
*/
public class SmaliMojo
@ -75,7 +75,7 @@ public class SmaliMojo
if (dumpFile != null) {
args.add("-d");
args.add("-D");
args.add(dumpFile.getAbsolutePath());
}