1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/unison/makefile-fix-clean.patch
Jakub Jirutka 74ff07c2c6 community/unison: upgrade to 2.48.15v4, remove -doc
HTML page for this version is not available.
2018-03-10 02:17:25 +01:00

25 lines
631 B
Diff

$(FSMONITOR) starts with a hyphen, so it's interpreted as an option.
$(NAME) is empty, so -blob is interpreted as an option.
--- a/fsmonitor/linux/Makefile
+++ b/fsmonitor/linux/Makefile
@@ -26,4 +26,4 @@
clean::
rm -f $(DIR)/*.cm[iox] $(DIR)/*.o $(DIR)/*~
- rm -f $(FSMONITOR)$(EXEC_EXT)
\ No newline at end of file
+ rm -f -- $(FSMONITOR)$(EXEC_EXT)
--- a/Makefile
+++ b/Makefile
@@ -354,8 +354,8 @@
clean::
-$(RM) *.log *.aux *.log *.dvi *.out *.bak
-$(RM) -r obsolete
- -$(RM) $(NAME) $(NAME).exe
- -$(RM) $(NAME)-blob.o
+ -$(RM) -- $(NAME) $(NAME).exe
+ -$(RM) -- $(NAME)-blob.o
clean::
$(MAKE) -C ubase clean