Mercurial > utils
changeset 582:db39585c4eaf
Fix: ln: failed to create symbolic link '/home/user/usr/bin/ew': File exists
author | Oleksandr Gavenko <gavenkoa@gmail.com> |
---|---|
date | Fri, 09 Jan 2015 11:05:47 +0200 |
parents | 84907c43794d |
children | af12eff59aa7 |
files | emacs/Makefile |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/emacs/Makefile Wed Jan 07 23:58:18 2015 +0200 +++ b/emacs/Makefile Fri Jan 09 11:05:47 2015 +0200 @@ -49,7 +49,7 @@ for file in $(SRC_FILES); do \ install -m 755 $$file $(bindir); \ done - ln -s $(bindir)/e $(bindir)/ew + ln -s -f $(bindir)/e $(bindir)/ew for file in $(MAN1_FILES); do \ install -m 644 $$file $(man1dir); \ done