Skip to content

Commit

Permalink
Merge pull request #3262 from mbrubeck/cargo
Browse files Browse the repository at this point in the history
Cargo fixes
  • Loading branch information
metajack committed Sep 10, 2014
2 parents 5a1db0d + 1583088 commit aafab19
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion ports/android/Makefile
Expand Up @@ -8,7 +8,6 @@ all:
find ../../rust/lib/rustlib/arm-linux-androideabi/lib \
-name '*.so' -type f -size +1c | \
xargs -I {} cp -f {} libs/armeabi
cp -a extlibs/* libs/armeabi
$(ANDROID_SDK)/tools/android update project \
--name ServoAndroid \
--target "android-18" \
Expand Down
2 changes: 2 additions & 0 deletions python/servo/build_commands.py
Expand Up @@ -39,6 +39,8 @@ def build(self, target, release=False, jobs=None):
opts = []
if release:
opts += ["--release"]
if target:
opts += ["--target", target]
if jobs is not None:
opts += ["-j", jobs]

Expand Down
2 changes: 1 addition & 1 deletion python/servo/devenv_commands.py
Expand Up @@ -26,7 +26,7 @@ class MachCommands(CommandBase):
category='devenv',
allow_all_args=True)
@CommandArgument('params', default=None, nargs='...',
help="Command-line arguments to be passed through to Cervo")
help="Command-line arguments to be passed through to Cargo")
def run(self, params):
return subprocess.call(["cargo"] + params,
env=self.build_env())

0 comments on commit aafab19

Please sign in to comment.