Home | History | Annotate | Download | only in sysroot_wrapper
      1 #!/bin/bash -u
      2 
      3 source common/common.sh
      4 
      5 # Remove file, signaling to emerge that it needs to be rebuilt. The compiler
      6 # wrapper will insert the correct object file based on $BISECT_GOOD_SET
      7 cat $1 | sudo xargs rm -f
      8 
      9 exit 0
     10