Have all multi-value build flags work similarly

Semicolons are still supported, but commas are now the better standard.
This commit is contained in:
Daniel Martí 2014-02-12 11:13:20 +01:00
parent 5125b52e39
commit 24c9232398
3 changed files with 37 additions and 15 deletions

View file

@ -884,22 +884,22 @@ which architecture or platform the apk is designed to run on.
If specified, the package version code in the AndroidManifest.xml is
replaced with the version code for the build. See also forceversion.
@item rm=<relpath1;relpath2;...>
@item rm=relpath1,relpath2,...
Specifies the relative paths of files or directories to delete before
the build is done. The paths are relative to the base of the build
directory - i.e. the root of the directory structure checked out from
the source respository - not necessarily the directory that contains
AndroidManifest.xml.
Multiple files/directories can be specified by separating them with ';'.
Multiple files/directories can be specified by separating them with ','.
Directories will be recursively deleted.
@item extlibs=a;b;c
@item extlibs=a,b,...
Specifies a list of external libraries (jar files) from the
@code{build/extlib} library, which will be placed in the @code{libs} directory
of the project. Separate items with semicolons.
@item srclibs=[n:]a@@r;[n:]b@@r1;
@item srclibs=[n:]a@@r,[n:]b@@r1,...
Specifies a list of source libraries or Android projects. Separate items with
semicolons, and each item is of the form name@@rev where name is the predefined
source library name and rev is the revision or tag in source control to use.
@ -947,7 +947,7 @@ You can use $$SDK$$, $$NDK$$ and $$MVN3$$ to substitute the paths to the
android SDK and NDK directories, and maven 3 executable respectively e.g.
for when you need to run @code{android update project} explicitly.
@item scanignore=path1;path2;...
@item scanignore=path1,path2,...
Enables one or more files/paths to be exlcuded from the scan process.
This should only be used where there is a very good reason, and
probably accompanied by a comment explaining why it is necessary.
@ -955,7 +955,7 @@ probably accompanied by a comment explaining why it is necessary.
When scanning the source tree for problems, matching files whose relative
paths start with any of the paths given here are ignored.
@item scandelete=path1;path2;...
@item scandelete=path1,path2,...
Similar to scanignore=, but instead of ignoring files under the given paths,
it tells f-droid to delete the matching files directly.