aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-08-27 23:15:54 +1000
committerGravatar axel <axel@liljencrantz.se>2006-08-27 23:15:54 +1000
commit285abcc9bc4b608aa32f554ecff5278bc798a15b (patch)
tree650edeebd9b118c87d9eb26bb46c7efad0ce8e88 /Makefile.in
parentb15e8123ca1d98d26fcd0a600b3ab19e02defd9f (diff)
Do not use the non-standard -i switch for sed
darcs-hash:20060827131554-ac50b-b969c2a56607ff46d028f5c44faabf2842814f0e.gz
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 222b3432..9f988f6f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -336,7 +336,8 @@ doc_src/builtin_doc: $(BUILTIN_DOC_SRC) doc_src/count.txt builtin_help.hdr $(CMD
done
cd doc_src; doxygen; cd ..;
for i in doc_src/builtin_doc/man/man1/*.1; do \
- sed -i -e "s/\(.\)\\.SH/\1/" $$i; \
+ sed -e "s/\(.\)\\.SH/\1/" <$$i >$$i.tmp; \
+ mv $$i.tmp $$i; \
done
touch doc_src/builtin_doc