File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 2020if [ -d ${CMSSW_BASE} /src/DataFormats/Provenance ]; then
2121 cp -Lr ${CMSSW_BASE} /src/DataFormats/Provenance DataFormats/
2222fi
23+ # DataFormats/Common and DataFormat/Provenance depend on Utilities
24+ if [ -d ${CMSSW_BASE} /src/FWCore/Utilities ]; then
25+ mkdir -p FWCore
26+ cp -Lr ${CMSSW_BASE} /src/FWCore/Utilities FWCore/
27+ fi
28+ # DataFormats/Common depends on MessageLogger
29+ if [ -d ${CMSSW_BASE} /src/FWCore/MessageLogger ]; then
30+ mkdir -p FWCore
31+ cp -Lr ${CMSSW_BASE} /src/FWCore/MessageLogger FWCore/
32+ fi
33+ # DataFormats/Provenance depends on Reflection
34+ if [ -d ${CMSSW_BASE} /src/FWCore/Reflection ]; then
35+ mkdir -p FWCore
36+ cp -Lr ${CMSSW_BASE} /src/FWCore/Reflection FWCore/
37+ fi
38+
39+ # DataFormats/TestObjects depends on FWCore/SOA
40+ if [ -d ${CMSSW_BASE} /src/FWCore/SOA ]; then
41+ mkdir -p FWCore
42+ cp -Lr ${CMSSW_BASE} /src/FWCore/SOA FWCore/
43+ fi
2344
2445# Copy DataFormats/TestObjects code to be able to edit it to make ROOT header parsing to fail
2546for DIR in ${CMSSW_BASE} ${CMSSW_RELEASE_BASE} ${CMSSW_FULL_RELEASE_BASE} ; do
You can’t perform that action at this time.
0 commit comments