Skip to content

Commit 61f78e3

Browse files
authored
Change order of dependency build.
1 parent c994176 commit 61f78e3

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

build.sh

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,16 @@ make install
215215
cd ..
216216
fi
217217

218+
if [ ! -d fontconfig-2.15.0 ]; then
219+
curl -L https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.15.0.tar.gz -o fontconfig.tar.gz
220+
tar -xf fontconfig.tar.gz
221+
cd fontconfig-2.15.0
222+
./configure --prefix=${PREFIX} --disable-shared
223+
make -j$(nproc --all)
224+
make install
225+
cd ..
226+
fi
227+
218228
if [ ! -d libXft-2.3.8 ]; then
219229
curl -L https://xorg.freedesktop.org/releases/individual/lib/libXft-2.3.8.tar.gz -o libXft.tar.gz
220230
tar -xf libXft.tar.gz
@@ -285,16 +295,6 @@ make install
285295
cd ..
286296
fi
287297

288-
if [ ! -d fontconfig-2.15.0 ]; then
289-
curl -L https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.15.0.tar.gz -o fontconfig.tar.gz
290-
tar -xf fontconfig.tar.gz
291-
cd fontconfig-2.15.0
292-
./configure --prefix=${PREFIX} --disable-shared
293-
make -j$(nproc --all)
294-
make install
295-
cd ..
296-
fi
297-
298298
if [ ! -d tcl8.6.13 ]; then
299299
curl -L http://downloads.sourceforge.net/project/tcl/Tcl/8.6.13/tcl8.6.13-src.tar.gz -o tcl.tar.gz
300300
tar -xf tcl.tar.gz

0 commit comments

Comments
 (0)