diff options
author | Marco Martin <notmart@gmail.com> | 2016-03-10 14:40:19 +0100 |
---|---|---|
committer | Marco Martin <notmart@gmail.com> | 2016-03-10 14:40:19 +0100 |
commit | 2480f21e5b2463bd5ac82980f44386277f24c51f (patch) | |
tree | d1cbcff876fb325e3e48e86c3e6f1fa548615edf /scripts/mobilecomponents.sh | |
parent | c780cfd7ce483c5e3e870c9c92c06a4f1995cbed (diff) | |
download | subsurface-2480f21e5b2463bd5ac82980f44386277f24c51f.tar.gz |
correctly build on android
Diffstat (limited to 'scripts/mobilecomponents.sh')
-rwxr-xr-x | scripts/mobilecomponents.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/mobilecomponents.sh b/scripts/mobilecomponents.sh index 590481468..6d535fa26 100755 --- a/scripts/mobilecomponents.sh +++ b/scripts/mobilecomponents.sh @@ -14,17 +14,17 @@ if [ ! -d "$SRC/subsurface" ] || [ ! -d "qt-mobile" ] || [ ! -d "subsurface-core exit 1 fi -# now bring in the latest Plasma-mobile mobile components plus a couple of icons that we need +# now bring in the latest Kirigami mobile components plus a couple of icons that we need # first, get the latest from upstream # yes, this is a bit overkill as we clone a lot of stuff for just a few files, but this way # we stop having to manually merge our code with upstream all the time # as we get closer to shipping a production version we'll likely check out specific tags # or SHAs from upstream cd $SRC -if [ ! -d plasma-mobile ] ; then - git clone git://github.com/KDE/plasma-mobile +if [ ! -d kirigami ] ; then + git clone git://github.com/KDE/kirigami fi -pushd plasma-mobile +pushd kirigami git pull popd if [ ! -d breeze-icons ] ; then @@ -36,7 +36,7 @@ popd # now copy the components and a couple of icons into plae MC=$SRC/subsurface/qt-mobile/qml/mobilecomponents -PMMC=plasma-mobile/components/mobilecomponents +PMMC=kirigami/src BREEZE=breeze-icons rm -rf $MC |