소스 검색

Hide --neko-lib-path from help menu

It is only meant to be used internally for haxelibs
tobil4sk 2 년 전
부모
커밋
0c62383db2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/compiler/args.ml

+ 1 - 1
src/compiler/args.ml

@@ -198,7 +198,7 @@ let parse_args com =
 		("Target-specific",["--swf-lib"],["-swf-lib"],Arg.String (fun file ->
 			add_native_lib file false;
 		),"<file>","add the SWF library to the compiled SWF");
-		("Target-specific",["--neko-lib-path"],[],Arg.String (fun dir ->
+		("Target-specific",[],["--neko-lib-path"],Arg.String (fun dir ->
 			com.neko_lib_paths <- dir :: com.neko_lib_paths
 		),"<directory>","add the neko library path");
 		("Target-specific",["--swf-lib-extern"],["-swf-lib-extern"],Arg.String (fun file ->