diff options
author | Efraim Flashner | 2021-05-10 08:56:01 -0500 |
---|---|---|
committer | Efraim Flashner | 2021-05-11 06:05:03 -0500 |
commit | 2d8a3551b41d27723471a9a5e5460706fe2d2d1f (patch) | |
tree | 2445bf2a802458936cd2cc3779dd91ba2af35bb4 /gn | |
parent | 00ba1f8fa99589fa47822ea96dc2de186e186ef7 (diff) | |
download | guix-bioinformatics-2d8a3551b41d27723471a9a5e5460706fe2d2d1f.tar.gz |
gn: genome-browser: Fix freetype error.
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/bioinformatics.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index 5fdbd4d..a59c758 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -1615,7 +1615,8 @@ multiple sequence alignment.") ;; Force linking with freetype. (substitute* "inc/common.mk" (("libpng-config --ldflags") "pkg-config --libs libpng freetype2") - (("libpng-config --I_opts") "pkg-config --cflags-only-I libpng freetype2")) + (("libpng-config --I_opts") "pkg-config --cflags-only-I libpng freetype2") + (("\\$\\{HG_INC\\}" hg_inc) (string-append hg_inc " -DUSE_FREETYPE"))) ;; Force the trash location. (substitute* (cons* |