Add support for symbolic links for product folders
Fixes http://code.google.com/p/android/issues/detail?id=2116
This commit is contained in:
committed by
Jean-Baptiste Queru
parent
8c3ad517eb
commit
2f49d59369
@@ -86,7 +86,7 @@ filename="${!nargs}"
|
||||
# Print out all files that match, as long as the path isn't explicitly
|
||||
# pruned. This will print out extraneous results from directories whose
|
||||
# parents have a match. These are filtered out by the awk script below.
|
||||
find "${@:0:$nargs}" $findargs -type f -name "$filename" -print |
|
||||
find -L "${@:0:$nargs}" $findargs -type f -name "$filename" -print |
|
||||
|
||||
# Only pass along the directory of each match.
|
||||
sed -e 's/\/[^\/]*$/\//' |
|
||||
|
Reference in New Issue
Block a user