summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/harfbuzz-ng/import_from_tarball.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/harfbuzz-ng/import_from_tarball.sh')
-rw-r--r--src/3rdparty/harfbuzz-ng/import_from_tarball.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/3rdparty/harfbuzz-ng/import_from_tarball.sh b/src/3rdparty/harfbuzz-ng/import_from_tarball.sh
index db0e6004a4..7bcaf22cdc 100644
--- a/src/3rdparty/harfbuzz-ng/import_from_tarball.sh
+++ b/src/3rdparty/harfbuzz-ng/import_from_tarball.sh
@@ -42,7 +42,7 @@
# This is a small script to copy the required files from a harfbuzz tarball
# into 3rdparty/harfbuzz-ng/ . Documentation, tests, demos etc. are not imported.
# Steps:
-# 1. rm $QTDIR/src/3rdparty/harfbuzz-ng/src/*
+# 1. rm $QTDIR/src/3rdparty/harfbuzz-ng/src/* && rm $QTDIR/src/3rdparty/harfbuzz-ng/src/OT/Layout/GSUB
# 2. source import_from_tarball.sh harfbuzz_tarball_dir/ $QTDIR/src/3rdparty/harfbuzz-ng/
# 3. Check that CMakeLists contains everything
@@ -84,7 +84,6 @@ FILES=(AUTHORS
NEWS
README.md
THANKS
- TODO
)
for i in ${FILES[*]}; do
@@ -98,3 +97,9 @@ CODEFILES=($HB_DIR/src/*.cc
for i in ${CODEFILES[*]}; do
cp $i $TARGET_DIR/src/
done
+
+GSUBFILES=($HB_DIR/src/OT/Layout/GSUB/*.hh)
+
+for i in ${GSUBFILES[*]}; do
+ cp $i $TARGET_DIR/src/OT/Layout/GSUB/
+done