summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2013-04-17 20:51:31 +0300
committerEli Zaretskii <eliz@gnu.org>2013-04-17 20:51:31 +0300
commitf576f7fb042d50ff965513f4679aa68343d0a7ee (patch)
tree9d14f30c52f77075fc6c04546af56feff0890d94 /Makefile.in
parent79869f9a4889048ff8fced78fdf737c33943f93c (diff)
downloademacs-f576f7fb042d50ff965513f4679aa68343d0a7ee.tar.gz
Fixed the LN_S and LN_EMACS issue.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 86eba76005b..6e0f151ea1a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -257,8 +257,6 @@ INSTALL_INFO = @INSTALL_INFO@
INSTALL_STRIP =
MKDIR_P = @MKDIR_P@
LN_S = @LN_S@
-# Used in "make install". Usually, $(LN_S), but MS-Windows uses hard links.
-LN_EMACS = @LN_EMACS@
# We use gzip to compress installed .el files.
GZIP_PROG = @GZIP_PROG@
@@ -473,7 +471,7 @@ install-arch-dep: src install-arch-indep install-doc
chmod 1755 $(DESTDIR)${bindir}/$(EMACSFULL) || true; \
if test "x${NO_BIN_LINK}" = x; then \
rm -f $(DESTDIR)${bindir}/$(EMACS) ; \
- cd $(DESTDIR)${bindir} && $(LN_EMACS) $(EMACSFULL) $(EMACS); \
+ cd $(DESTDIR)${bindir} && $(LN_S) $(EMACSFULL) $(EMACS); \
fi; \
else \
subdir=${ns_appresdir}/site-lisp; \