dannym pushed a commit to branch wip-desktop
in repository guix.
commit e79a047ce2062570c5ac2a1dd1b9c79c843ea45f
Author: Raghav Gururajan <[email protected]>
AuthorDate: Sun Aug 2 05:00:52 2020 -0400
gnu: texlive-bin: Recompile with -fPIC.
* gnu/packages/tex.scm (texlive-bin) [arguments]<#:configure-flags>[CFLAGS]:
New flag.
Signed-off-by: Danny Milosavljevic <[email protected]>
---
gnu/packages/tex.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index c4f9f6c..a2b8b16 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -321,7 +321,8 @@ files from LOCATIONS with expected checksum HASH. CODE is
not currently in use.
(arguments
`(#:out-of-source? #t
#:configure-flags
- '("--disable-static"
+ '("CFLAGS=-fPIC"
+ "--disable-static"
"--disable-native-texlive-build"
"--with-system-cairo"
"--with-system-freetype2"