]> git.pld-linux.org Git - packages/libreoffice.git/blob - libreoffice-build.patch
- Removed unused patches.
[packages/libreoffice.git] / libreoffice-build.patch
1 --- libreoffice-4.3.2.2/configure.ac~   2014-10-09 15:00:49.000000000 +0200
2 +++ libreoffice-4.3.2.2/configure.ac    2014-10-09 15:12:08.242486104 +0200
3 @@ -11752,10 +11752,11 @@
4      FONTFILE_LOWER="$(echo $FONTFILE | $AWK '{print tolower($0)}')"
5  
6      TESTEXPR="'${FONTFILE_LOWER}' = '$(echo $FONT | $AWK '{print tolower($0)}').ttf'"
7 -    while true ; do
8 -        MAPPING="$(echo $1 | $AWK '{print tolower($0)}')"; shift
9 -        test -n "$MAPPING" || break
10 +    MAPPING="$(echo $1 | $AWK '{print tolower($0)}')"
11 +    while test -n "$MAPPING"; do
12          TESTEXPR="${TESTEXPR} -o '${FONTFILE_LOWER}' = '$MAPPING-regular.ttf'"
13 +        shift
14 +        MAPPING="$(echo $1 | $AWK '{print tolower($0)}')"
15      done
16      if test $TESTEXPR
17      then
18
This page took 0.088494 seconds and 3 git commands to generate.