From e96f9a40ad46b8c08eaa81fde015dccc990388c5 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 27 Nov 2009 19:58:00 +1100 Subject: s4-install: old systems don't have sed -i surprisingly, this failure came from SLES8. I didn't realise that the -i option was so new! --- source4/script/installmisc.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/script/installmisc.sh b/source4/script/installmisc.sh index 7851d1f77d..cb618628b0 100755 --- a/source4/script/installmisc.sh +++ b/source4/script/installmisc.sh @@ -18,7 +18,10 @@ cd $SRCDIR || exit 1 fix_python_path() { f="$1" egrep 'sys.path.insert.*bin/python' $f > /dev/null && { - sed -i "s|\(sys.path.insert.*\)bin/python\(.*\)$|\1$PYTHONDIR\2|g" $f || exit 1 + # old systems don't have sed -i :-( + sed "s|\(sys.path.insert.*\)bin/python\(.*\)$|\1$PYTHONDIR\2|g" < $f > $f.$$ || exit 1 + mv -f $f.$$ $f || exit 1 + chmod +x $f } } -- cgit