efivar: remove sed -i

This commit is contained in:
Dylan Araps 2021-07-03 20:33:14 +00:00
parent 1dcb6b4c1b
commit 564da4b48c
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@
# LTO is used when CFLAGS are unset causing a compilation
# error with GCC 10. LTO can be set by the user though
# '-flto-partition=none' is also needed.
sed -i 's/ -flto//' Make.defaults
sed 's/ -flto//' Make.defaults > _
mv -f _ Make.defaults
for patch in *.patch; do
patch -p1 < "$patch"