Skip to content

Commit

Permalink
Merge pull request #78 from eflumerf/RenamePcie
Browse files Browse the repository at this point in the history
Handle renamed pcie_linux_kernel_module package.
  • Loading branch information
rlcee authored Jan 11, 2023
2 parents 1a14778 + 0846e94 commit a756c41
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/sconstruct_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,12 @@ def cppPath(mu2eOpts):
path = path + [ os.environ['MU2E_ARTDAQ_CORE_INC' ] ]
else: # New
path = path + [ os.environ['ARTDAQ_CORE_MU2E_INC' ] ]
if 'PCIE_LINUX_KERNEL_MODULE_INC' in os.environ: # Old
path = path + [ os.environ['PCIE_LINUX_KERNEL_MODULE_INC' ] ]
else: # New
path = path + [ os.environ['MU2E_PCIE_UTILS_INC' ] ]
path = path + [
os.environ['ARTDAQ_CORE_INC'],
os.environ['PCIE_LINUX_KERNEL_MODULE_INC'],
os.environ['TRACE_INC'],
os.environ['GSL_INC'],
os.environ['POSTGRESQL_INC'],
Expand Down

0 comments on commit a756c41

Please sign in to comment.