first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / core / tools / solution_solvers / find_output_pathers.sh
1 #!/bin/bash
2
3 # this script locates any project files that mention the output path setting (OutputPath).  
4 # these are extra suspicious due to the problems caused for our solutions when files have the
5 # OutputPath specified rather than allowing the parent's settings to be inherited.
6
7 # only works when repo dir is at the top of the full builds area.
8 # we need like a top dir of some sort.
9 find $REPOSITORY_DIR -iname "*proj" -exec grep -l OutputPath {} ';' >~/outputpath_mentioners.txt