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

fixed wrong test, not if object (file/directory) exists, but if object

is a regular file.


git-svn-id: http://root.cern.ch/svn/root/trunk@8725 27541ba8-7e3a-0410-8455-c3a389f83636
parent 08594629
No related branches found
No related tags found
No related merge requests found
...@@ -226,7 +226,7 @@ check_library() { ...@@ -226,7 +226,7 @@ check_library() {
# logical variables and are on our way, otherwise we continue # logical variables and are on our way, otherwise we continue
liblist=`echo $l/$j` # expands wildcard in $l/$j liblist=`echo $l/$j` # expands wildcard in $l/$j
for n in ${liblist} ; do for n in ${liblist} ; do
if test -r $n ; then if test -f $n ; then
found_dir=$l found_dir=$l
found_lib=$j found_lib=$j
break 4 break 4
......
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