diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-08-12 09:39:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-08-12 13:12:23 +0200 |
commit | a5642b8b9690f835cbd07ce3278e425b7aa7b9ff (patch) | |
tree | 3435036c1323cdf039d7252031c65437c3ffba33 /bin | |
parent | 422150be82ed892ecf31a8ab76c1d1ca801dcda8 (diff) |
ofz: liberation-fonts-ttf alone is sufficient
Change-Id: Ifa6938c759c0c1036120da2eeadefbe00ae96f0e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120381
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/oss-fuzz-build.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bin/oss-fuzz-build.sh b/bin/oss-fuzz-build.sh index dce831260067..7e77c67497a4 100755 --- a/bin/oss-fuzz-build.sh +++ b/bin/oss-fuzz-build.sh @@ -33,10 +33,8 @@ for a in *fuzzer; do #some minimal fonts required mv $a $OUT mkdir -p $OUT/$a.fonts - for b in $SRC/liberation*fonts*; do - tar -x -C $OUT/$a.fonts -v --strip-components=1 --wildcards --no-anchored '*.ttf' -f $b - done - cp $SRC/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf $OUT/$a.fonts + tar -x -C $OUT/$a.fonts --strip-components=1 --wildcards --no-anchored '*.ttf' -f $SRC/liberation-fonts-ttf* + cp $SRC/*opens___.ttf $OUT/$a.fonts #minimal runtime requirements cp templateservices.rdb $OUT/$a.services.rdb cp types.rdb $OUT/$a.types.rdb |