Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefile: don't create .bak files only to delete them immediately after
3a18d8b had the right idea, but `sed -i` on macOS doesn't have to create backup files at all. The man page says: -i extension Edit files in-place, saving backups with the specified extension. If a zero-length extension is given, no backup will be saved. So, we pass a zero-length extension to avoid creating backup files. Then we don't have to delete any backups afterward. Changelog-None
- Loading branch information