aboutsummaryrefslogtreecommitdiff
path: root/reproduce/software/make/basic.mk
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2020-06-29 01:11:21 +0100
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2020-06-30 03:17:17 +0100
commit9ddff8b5c90b522f7dbeb3614b8ef00ceb45f4f2 (patch)
tree45aa0077fdf3f1f8f05a6318b9b9753359326b7c /reproduce/software/make/basic.mk
parent1729f42b01aa193ff771c68011593bb2e7ff7ba3 (diff)
Core Xorg libraries necessary for Ghostscript now included
Until now, in order to build Ghostscript, the project used the host's Xorg libraries. This was because we hadn't yet added the necessary build rules for them. With this commit, the instructions to build the necessary Xorg libraries for Ghostscript have also been added. Also, the shared Ghostscript library has been built with this commit and two sets of standard fonts are also included, setting us on the path to build TeXLive from source later. This task was done with the help and support of Raul Infante-Sainz.
Diffstat (limited to 'reproduce/software/make/basic.mk')
-rw-r--r--reproduce/software/make/basic.mk3
1 files changed, 1 insertions, 2 deletions
diff --git a/reproduce/software/make/basic.mk b/reproduce/software/make/basic.mk
index 94bb5d4..453eddb 100644
--- a/reproduce/software/make/basic.mk
+++ b/reproduce/software/make/basic.mk
@@ -191,9 +191,8 @@ $(ibidir)/low-level-links: $(ibidir)/coreutils-$(coreutils-version) \
# Libdl (for dynamic loading libraries at runtime)
# POSIX Threads library for multi-threaded programs.
for l in dl pthread; do
- rm -f $(ildir)/lib$$l*;
if [ -f /usr/lib/lib$$l.a ]; then
- ln -s /usr/lib/lib$$l.* $(ildir)/
+ ln -sf /usr/lib/lib$$l.* $(ildir)/
fi
done