sedcheck.sh 243 B

1234567891011
  1. #!/bin/sh
  2. # Make sure the host sed supports '-i' (in-place).
  3. # If it doesn't, we'll build and use our own.
  4. SED=$(toolchain/dependencies/check-host-sed.sh)
  5. if [ -z "$SED" ] ; then
  6. echo build-sed-host-binary
  7. else
  8. echo use-sed-host-binary
  9. fi