diff options
Diffstat (limited to 'scripts/mobilecomponents.sh')
-rwxr-xr-x | scripts/mobilecomponents.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/mobilecomponents.sh b/scripts/mobilecomponents.sh index 3086b0770..ad6c4a370 100755 --- a/scripts/mobilecomponents.sh +++ b/scripts/mobilecomponents.sh @@ -27,6 +27,14 @@ cd "$SRC"/subsurface/mobile-widgets/3rdparty/ECM cmake -DSHARE_INSTALL_DIR=.. ../extra-cmake-modules make install +# finally, add our patches to Kirigami +cd "$SRC"/subsurface/mobile-widgets/3rdparty +PATCHES=$(echo 00*.patch) +cd kirigami +for i in $PATCHES +do + git am ../$i +done exit 0 |