From d5900b28910a85599694f23411e9f883546ae220 Mon Sep 17 00:00:00 2001 From: Paul Keith Date: Thu, 6 Apr 2017 16:29:53 -0500 Subject: [PATCH] Move all gapps to a system/ folder Signed-off-by: Paul Keith --- build/gapps.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build/gapps.sh b/build/gapps.sh index 57ca774..84bec81 100755 --- a/build/gapps.sh +++ b/build/gapps.sh @@ -47,11 +47,12 @@ function create() { PREBUILT=$TOP/$GARCH/proprietary test -d $OUT || mkdir $OUT; test -d $OUT/$GARCH || mkdir -p $OUT/$GARCH + test -d $OUT/$GARCH/system || mkdir -p $OUT/$GARCH/system echo "Build directories are now ready" >> $GLOG echo "Getting prebuilts..." echo "Copying stuff" >> $GLOG - cp -r $PREBUILT/* $OUT/$GARCH >> $GLOG - cp -r $COMMON/* $OUT/$GARCH >> $GLOG + cp -r $PREBUILT/* $OUT/$GARCH/system >> $GLOG + cp -r $COMMON/* $OUT/$GARCH/system >> $GLOG } function zipit() {