diff options
author | Lia Lenckowski <lialenck@protonmail.com> | 2024-09-25 22:24:35 +0200 |
---|---|---|
committer | Lia Lenckowski <lialenck@protonmail.com> | 2024-09-25 22:25:00 +0200 |
commit | 978794cf1d255cf4ad4569e696ddcbd91abb0a7c (patch) | |
tree | 2715ad35af38ac7813f999b8797bcb880b52b72c /data/makefile | |
parent | 7bac98ee918ea9cee5eea3d446b2f204032fa03b (diff) | |
download | hurrycurry-978794cf1d255cf4ad4569e696ddcbd91abb0a7c.tar hurrycurry-978794cf1d255cf4ad4569e696ddcbd91abb0a7c.tar.bz2 hurrycurry-978794cf1d255cf4ad4569e696ddcbd91abb0a7c.tar.zst |
Replace usages of rm with $(RM) in makefiles
Diffstat (limited to 'data/makefile')
-rw-r--r-- | data/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/makefile b/data/makefile index 23956869..af215a6c 100644 --- a/data/makefile +++ b/data/makefile @@ -26,4 +26,4 @@ recipes/%.svg: recipes/%.gv.txt dot -Tsvg -Kdot >$@<$< clean: - rm -fr recipes/*.{yaml,gv.txt,svg} + $(RM) -r recipes/*.{yaml,gv.txt,svg} |