Update Travis configuration

This commit is contained in:
Anonymous 2019-07-04 19:02:11 +09:00
parent 2dc5e2e70a
commit 85d3854719
1 changed files with 5 additions and 5 deletions

View File

@ -19,17 +19,17 @@ fi
( (
cd "$src_dir" || exit 1 cd "$src_dir" || exit 1
make allmodconfig make allmodconfig CC=${CC} HOSTCC=${CC}
make prepare make prepare CC=${CC} HOSTCC=${CC}
make scripts make scripts CC=${CC} HOSTCC=${CC}
) )
( (
cd ashmem || exit 1 cd ashmem || exit 1
make KERNEL_SRC="../${src_dir}" make KERNEL_SRC="../${src_dir}" CC=${CC} HOSTCC=${CC}
) )
( (
cd binder || exit 1 cd binder || exit 1
make KERNEL_SRC="../${src_dir}" make KERNEL_SRC="../${src_dir}" CC=${CC} HOSTCC=${CC}
) )