2003-11-19 18:17:56 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2006-04-15 04:27:44 +02:00
|
|
|
# Make sure the host sed supports '-i' (in-place).
|
|
|
|
# If it doesn't, we'll build and use our own.
|
2007-03-09 09:33:34 +01:00
|
|
|
SED=$(toolchain/dependencies/check-host-sed.sh)
|
2006-04-15 04:27:44 +02:00
|
|
|
|
2007-03-09 09:33:34 +01:00
|
|
|
if [ -z "$SED" ] ; then
|
2003-11-19 18:17:56 +01:00
|
|
|
echo build-sed-host-binary
|
2003-11-24 16:55:50 +01:00
|
|
|
else
|
|
|
|
echo use-sed-host-binary
|
2006-04-15 04:27:44 +02:00
|
|
|
fi
|