]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
bugfix: library arguments had been filtered out by accident after r40708
authorrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 27 Apr 2010 20:54:59 +0000 (20:54 +0000)
committerrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 27 Apr 2010 20:54:59 +0000 (20:54 +0000)
HLT/rec/AliHLTReconstructor.cxx

index d8d8843de6c7b0d40edf40edab16d590ae77a800..386cb60aa616f6358492a21950d9706787f376e0 100644 (file)
@@ -125,7 +125,6 @@ void AliHLTReconstructor::Init()
   // the options scan has been moved to AliHLTSystem, the old code
   // here is kept to be able to run an older version of the HLT code
   // with newer AliRoot versions.
-  TString libs("");
   TString option = GetOption();
   TObjArray* pTokens=option.Tokenize(" ");
   option="";
@@ -156,9 +155,6 @@ void AliHLTReconstructor::Init()
        token.ReplaceAll(","," ");
        token.ReplaceAll("'","");
        esdManagerOptions=token;
-      } else if (token.BeginsWith("lib") && token.EndsWith(".so")) {
-       libs+=token;
-       libs+=" ";
       } else {
        if (option.Length()>0) option+=" ";
        option+=token;