xref: /aosp_15_r20/external/toolchain-utils/binary_search_tool/sysroot_wrapper/switch_to_good.sh (revision 760c253c1ed00ce9abd48f8546f08516e57485fe)
1#!/bin/bash -u
2
3source 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
7cat $1 | sudo xargs rm -f
8
9exit 0
10