1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-01 23:36:37 +02:00

doc: replace "rm -f" by "$(RM)" in makefiles

This commit is contained in:
Sébastien Helleu
2018-03-11 20:59:41 +01:00
parent 3dacb43f0c
commit 78f5a73d94
10 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -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))