Makefile: add missing "=" char between "-i" flag and its value for sed

This is a follow-up after 78af27f955
This commit is contained in:
Aliaksandr Valialkin 2022-10-06 15:06:39 +03:00
parent 78af27f955
commit 9acf1845f4
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1

View file

@ -402,7 +402,7 @@ copy-docs:
echo "---\nsort: ${ORDER}\n---\n" > ${DST}; \
fi
cat ${SRC} >> ${DST}
sed -i '.tmp' 's/<img src=\"docs\//<img src=\"/' ${DST}
sed -i='.tmp' 's/<img src=\"docs\//<img src=\"/' ${DST}
# Copies docs for all components and adds the order tag.
# For ORDER=0 it adds no order tag.