diff --git a/tools/codesighs/autosummary.win.bash b/tools/codesighs/autosummary.win.bash index cf56dce2860e..1370bca51702 100755 --- a/tools/codesighs/autosummary.win.bash +++ b/tools/codesighs/autosummary.win.bash @@ -109,7 +109,7 @@ MYTMPDIR=`mktemp -d ./codesighs.tmp.XXXXXXXX` # Find the types of files we are interested in. # ONEFINDPASS="$MYTMPDIR/onefind.list" -find $OBJROOT -type f -name "*.obj" -or -name "*.map" | while read FNAME; do +/usr/bin/find $OBJROOT -type f -name "*.obj" -or -name "*.map" | while read FNAME; do cygpath -m $FNAME >> $ONEFINDPASS done @@ -132,7 +132,7 @@ xargs -n 1 dumpbin.exe /symbols < $ALLOBJSFILE > $ALLOBJSYMSFILE 2> /dev/null # Produce the symdb for the symbols in all object files. # SYMDBFILE="$MYTMPDIR/symdb.tsv" -$OBJROOT/dist/bin/msdump2symdb --input $ALLOBJSYMSFILE | sort > $SYMDBFILE 2> /dev/null +$OBJROOT/dist/bin/msdump2symdb --input $ALLOBJSYMSFILE | /usr/bin/sort > $SYMDBFILE 2> /dev/null # @@ -152,7 +152,7 @@ $OBJROOT/dist/bin/msmap2tsv --symdb $SYMDBFILE --batch < $ALLMAPSFILE > $RAWTSVF # # Sort the TSV output for useful diffing and eyeballing in general. # -sort -r $RAWTSVFILE > $COPYSORTTSV +/usr/bin/sort -r $RAWTSVFILE > $COPYSORTTSV # diff --git a/tools/codesighs/basesummary.win.bash b/tools/codesighs/basesummary.win.bash index ffbc52fb38c7..32c149d06a14 100755 --- a/tools/codesighs/basesummary.win.bash +++ b/tools/codesighs/basesummary.win.bash @@ -114,7 +114,7 @@ MYTMPDIR=`mktemp -d ./codesighs.tmp.XXXXXXXX` # Find the types of files we are interested in. # ONEFINDPASS="$MYTMPDIR/onefind.list" -find $OBJROOT -type f -name "*.obj" -or -name "*.map" | while read FNAME; do +/usr/bin/find $OBJROOT -type f -name "*.obj" -or -name "*.map" | while read FNAME; do cygpath -m $FNAME >> $ONEFINDPASS done @@ -137,7 +137,7 @@ xargs -n 1 dumpbin.exe /symbols < $ALLOBJSFILE > $ALLOBJSYMSFILE 2> /dev/null # Produce the symdb for the symbols in all object files. # SYMDBFILE="$MYTMPDIR/symdb.tsv" -$OBJROOT/dist/bin/msdump2symdb --input $ALLOBJSYMSFILE | sort > $SYMDBFILE 2> /dev/null +$OBJROOT/dist/bin/msdump2symdb --input $ALLOBJSYMSFILE | /usr/bin/sort > $SYMDBFILE 2> /dev/null # @@ -167,7 +167,7 @@ $OBJROOT/dist/bin/msmap2tsv --symdb $SYMDBFILE --batch $RELEVANTARG < $ALLMAPSFI # # Sort the TSV output for useful diffing and eyeballing in general. # -sort -r $RAWTSVFILE > $COPYSORTTSV +/usr/bin/sort -r $RAWTSVFILE > $COPYSORTTSV #