Skip to content
Snippets Groups Projects
Commit c395af0a authored by Fons Rademakers's avatar Fons Rademakers
Browse files

avoid deleting some CINT build products that are not needed in the binary

distribution, but that cause a large rebuild when doing "make" after
"make dist".


git-svn-id: http://root.cern.ch/svn/root/trunk@21445 27541ba8-7e3a-0410-8455-c3a389f83636
parent 3157538f
No related branches found
No related tags found
No related merge requests found
...@@ -30,11 +30,6 @@ find tutorials -name "*.so" -exec rm -rf {} \; >/dev/null 2>&1;true ...@@ -30,11 +30,6 @@ find tutorials -name "*.so" -exec rm -rf {} \; >/dev/null 2>&1;true
find tutorials -name "work.pc" -exec rm -rf {} \; >/dev/null 2>&1;true find tutorials -name "work.pc" -exec rm -rf {} \; >/dev/null 2>&1;true
find tutorials -name "work.pcl" -exec rm -rf {} \; >/dev/null 2>&1;true find tutorials -name "work.pcl" -exec rm -rf {} \; >/dev/null 2>&1;true
# remove cintdll dictionary sources, dependencies, import libraries
find cint -name 'G__c_*' -exec rm -f {} \; >/dev/null 2>&1;true
find cint -name 'G__cpp_*' -exec rm -f {} \; >/dev/null 2>&1;true
find cint -name 'rootcint_*' -exec rm -f {} \; >/dev/null 2>&1;true
mv -f tutorials/gallery.root- tutorials/gallery.root mv -f tutorials/gallery.root- tutorials/gallery.root
mv -f tutorials/mlp/mlpHiggs.root- tutorials/mlp/mlpHiggs.root mv -f tutorials/mlp/mlpHiggs.root- tutorials/mlp/mlpHiggs.root
mv -f tutorials/quadp/stock.root- tutorials/quadp/stock.root mv -f tutorials/quadp/stock.root- tutorials/quadp/stock.root
...@@ -81,4 +76,7 @@ echo `echo ${FILES} | tr ' ' '\n' | sed \ ...@@ -81,4 +76,7 @@ echo `echo ${FILES} | tr ' ' '\n' | sed \
-e 's,^.*.cvsignore$,,' \ -e 's,^.*.cvsignore$,,' \
-e 's,^.*/CVS/.*$,,' \ -e 's,^.*/CVS/.*$,,' \
-e 's,^.*/.svn/.*$,,' \ -e 's,^.*/.svn/.*$,,' \
-e 's,^cint/.*/G__c_.*$',, \
-e 's,^cint/.*/G__cpp_.*$',, \
-e 's,^cint/.*/rootcint_.*$',, \
| grep -v '^$'` ${HAVEPRECOMP} | tr ' ' '\n' | sort | uniq | sed -e 's,^,'${PREPENDDIR}',' | grep -v '^$'` ${HAVEPRECOMP} | tr ' ' '\n' | sort | uniq | sed -e 's,^,'${PREPENDDIR}','
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment