diff options
author | darmac <xiaojun2@hisilicon.com> | 2021-05-17 17:42:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-17 11:42:00 +0200 |
commit | a24620bb6536279d45cd0c684f094b92ee2e50d1 (patch) | |
tree | f8b17c7362487a3eafe70568297b279692c2ad45 | |
parent | defb487ed968e9e5c73d90c3856b1122197394cf (diff) | |
download | spack-a24620bb6536279d45cd0c684f094b92ee2e50d1.tar.gz spack-a24620bb6536279d45cd0c684f094b92ee2e50d1.tar.bz2 spack-a24620bb6536279d45cd0c684f094b92ee2e50d1.tar.xz spack-a24620bb6536279d45cd0c684f094b92ee2e50d1.zip |
bib2xhtml: add dependency to run bibtex (#22742)
-rw-r--r-- | var/spack/repos/builtin/packages/bib2xhtml/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bib2xhtml/package.py b/var/spack/repos/builtin/packages/bib2xhtml/package.py index 8e7bd85193..3be5aadecf 100644 --- a/var/spack/repos/builtin/packages/bib2xhtml/package.py +++ b/var/spack/repos/builtin/packages/bib2xhtml/package.py @@ -11,6 +11,8 @@ class Bib2xhtml(Package): version('3.0-79-ge935', sha256='4a2d2d89dd2f3fed1c735055b806809b5cc1cde32dee1aa5987097ec5bf2181f') + depends_on('texlive', type='run') + def install(self, spec, prefix): # Add the bst include files to the install directory bst_include = join_path(prefix.share, 'bib2xhtml') |