epics-base: patch to avoid failure on "perl xsubpp" when "xsubpp" otherwise works fine. (#40849)

This commit is contained in:
Glenn Horton-Smith 2023-11-13 05:29:51 -06:00 committed by GitHub
parent 09d66168c4
commit 62b32080a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,6 +26,7 @@ class EpicsBase(MakefilePackage):
def patch(self):
filter_file(r"^\s*CC\s*=.*", "CC = " + spack_cc, "configure/CONFIG.gnuCommon")
filter_file(r"^\s*CCC\s*=.*", "CCC = " + spack_cxx, "configure/CONFIG.gnuCommon")
filter_file(r"\$\(PERL\)\s+\$\(XSUBPP\)", "$(XSUBPP)", "modules/ca/src/perl/Makefile")
@property
def install_targets(self):