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

fix to exclude LinkDef's in the top src directory (some people have

test LinkDef's there).


git-svn-id: http://root.cern.ch/svn/root/trunk@48646 27541ba8-7e3a-0410-8455-c3a389f83636
parent 512edd1c
No related branches found
No related tags found
No related merge requests found
......@@ -147,7 +147,7 @@ find $srcdir -path '*/test' -prune -o \
-path '*/include' -prune -o \
-follow \
-name '*LinkDef*.h' -print | \
grep -v -e '/RooFitCore_LinkDef.h$' | \
grep -v -e '/RooFitCore_LinkDef.h$' -e "$srcdir/*LinkDef*.h" | \
sed -e 's|^|#include "|' -e 's|$|"|' > alldefs.h
mv alldefs.h include/allLinkDef.h
......
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