mirror of
https://github.com/weechat/weechat.git
synced 2026-06-12 14:14:48 +02:00
doc: replace "rm -f" by "$(RM)" in makefiles
This commit is contained in:
+1
-1
@@ -76,4 +76,4 @@ uninstall-doc:
|
||||
# clean
|
||||
|
||||
clean-local:
|
||||
-rm -f weechat.1 weechat_*.html
|
||||
-$(RM) weechat.1 weechat_*.html
|
||||
|
||||
+1
-1
@@ -100,4 +100,4 @@ uninstall-doc:
|
||||
# clean
|
||||
|
||||
clean-local:
|
||||
-rm -f weechat.1 weechat_*.html
|
||||
-$(RM) weechat.1 weechat_*.html
|
||||
|
||||
+1
-1
@@ -119,4 +119,4 @@ uninstall-doc:
|
||||
# clean
|
||||
|
||||
clean-local:
|
||||
-rm -f weechat.1 weechat_*.html
|
||||
-$(RM) weechat.1 weechat_*.html
|
||||
|
||||
+1
-1
@@ -68,4 +68,4 @@ uninstall-doc:
|
||||
# clean
|
||||
|
||||
clean-local:
|
||||
-rm -f weechat_*.html
|
||||
-$(RM) weechat_*.html
|
||||
|
||||
+1
-1
@@ -119,4 +119,4 @@ uninstall-doc:
|
||||
# clean
|
||||
|
||||
clean-local:
|
||||
-rm -f weechat.1 weechat_*.html
|
||||
-$(RM) weechat.1 weechat_*.html
|
||||
|
||||
+1
-1
@@ -106,4 +106,4 @@ uninstall-doc:
|
||||
# clean
|
||||
|
||||
clean-local:
|
||||
-rm -f weechat.1 weechat_*.html
|
||||
-$(RM) weechat.1 weechat_*.html
|
||||
|
||||
+1
-1
@@ -118,4 +118,4 @@ uninstall-doc:
|
||||
# clean
|
||||
|
||||
clean-local:
|
||||
-rm -f weechat.1 weechat_*.html
|
||||
-$(RM) weechat.1 weechat_*.html
|
||||
|
||||
+1
-1
@@ -100,4 +100,4 @@ uninstall-doc:
|
||||
# clean
|
||||
|
||||
clean-local:
|
||||
-rm -f weechat.1 weechat_*.html
|
||||
-$(RM) weechat.1 weechat_*.html
|
||||
|
||||
+1
-1
@@ -74,4 +74,4 @@ uninstall-doc:
|
||||
# clean
|
||||
|
||||
clean-local:
|
||||
-rm -f weechat.1 weechat_*.html
|
||||
-$(RM) weechat.1 weechat_*.html
|
||||
|
||||
@@ -55,8 +55,8 @@ EXTRA_DIST = CMakeLists.txt
|
||||
# This link is created for compatibility with old versions on /upgrade.
|
||||
# It may be removed in future.
|
||||
install-exec-hook:
|
||||
(cd '$(DESTDIR)$(bindir)' && rm -f weechat-curses$(EXEEXT) && $(LN_S) weechat weechat-curses$(EXEEXT))
|
||||
(cd '$(DESTDIR)$(bindir)' && $(RM) weechat-curses$(EXEEXT) && $(LN_S) weechat weechat-curses$(EXEEXT))
|
||||
|
||||
# Remove symbolic link on uninstall
|
||||
uninstall-hook:
|
||||
(cd '$(DESTDIR)$(bindir)' && rm -f weechat-curses$(EXEEXT))
|
||||
(cd '$(DESTDIR)$(bindir)' && $(RM) weechat-curses$(EXEEXT))
|
||||
|
||||
Reference in New Issue
Block a user