This doesn't work as written:
sed -i '1506 s/</>/' \
'1507 s/</>/' \
'1508 s/</>/' src/shared/seccomp-util.c
it should be:
sed -e '1506 s/</>/' \
-e '1507 s/</>/' \
-e '1508 s/</>/' \
-i src/shared/seccomp-util.c
jb.
--
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page
