Skip to content

Commit

Permalink
make: clean-force: Also remove autoload files
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Mar 19, 2024
1 parent 5e021d0 commit 1172842
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion borg.mk
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ else
endif

clean-force:
@find . -name '*.elc' -exec rm '{}' ';'
@find . -name '*.elc' -exec rm -v '{}' ';'
@find . -name '*-autoloads.el' -exec rm -v '{}' ';'

This comment has been minimized.

Copy link
@kljohann

kljohann Mar 20, 2024

@tarsius Maybe in both cases use -print -delete or -printf 'rm %p\n' -delete instead of -exec rm -v '{}' ';'?


build: init-clean
@$(EMACS) $(EMACS_ARGUMENTS) $(EMACS_EXTRA) $(SILENCIO) \
Expand Down

0 comments on commit 1172842

Please sign in to comment.