diff options
| author | Glenn Morris | 2013-04-17 22:03:53 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-04-17 22:03:53 -0700 |
| commit | 4f8902cd02ff6c182dddf5217d2683cb6abdb728 (patch) | |
| tree | 0167556a75b12444999772e0e8022332f6414981 /Makefile.in | |
| parent | 29f47822781c138daa36a6acda85b09bccc52a95 (diff) | |
| download | emacs-4f8902cd02ff6c182dddf5217d2683cb6abdb728.tar.gz emacs-4f8902cd02ff6c182dddf5217d2683cb6abdb728.zip | |
Replace AC_PROG_LN_S by a less strict configure test
* configure.ac (AC_PROG_LN_S): Remove, too restrictive.
(LN_S_FILEONLY): New output variable.
* Makefile.in (LN_S): Remove.
(LN_S_FILEONLY): New, set by configure.
(install-arch-dep): Use LN_S_FILEONLY rather than LN_S.
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index bd77fa6a70d..019460acf3c 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -253,7 +253,8 @@ INSTALL_INFO = @INSTALL_INFO@ | |||
| 253 | # By default, we uphold the dignity of our programs. | 253 | # By default, we uphold the dignity of our programs. |
| 254 | INSTALL_STRIP = | 254 | INSTALL_STRIP = |
| 255 | MKDIR_P = @MKDIR_P@ | 255 | MKDIR_P = @MKDIR_P@ |
| 256 | LN_S = @LN_S@ | 256 | # Create a link to a file in the same directory as the target. |
| 257 | LN_S_FILEONLY = @LN_S_FILEONLY@ | ||
| 257 | 258 | ||
| 258 | # We use gzip to compress installed .el files. | 259 | # We use gzip to compress installed .el files. |
| 259 | GZIP_PROG = @GZIP_PROG@ | 260 | GZIP_PROG = @GZIP_PROG@ |
| @@ -455,7 +456,7 @@ install-arch-dep: src install-arch-indep install-doc | |||
| 455 | chmod 1755 $(DESTDIR)${bindir}/$(EMACSFULL) || true; \ | 456 | chmod 1755 $(DESTDIR)${bindir}/$(EMACSFULL) || true; \ |
| 456 | if test "x${NO_BIN_LINK}" = x; then \ | 457 | if test "x${NO_BIN_LINK}" = x; then \ |
| 457 | rm -f $(DESTDIR)${bindir}/$(EMACS) ; \ | 458 | rm -f $(DESTDIR)${bindir}/$(EMACS) ; \ |
| 458 | cd $(DESTDIR)${bindir} && $(LN_S) $(EMACSFULL) $(EMACS); \ | 459 | cd $(DESTDIR)${bindir} && $(LN_S_FILEONLY) $(EMACSFULL) $(EMACS); \ |
| 459 | fi; \ | 460 | fi; \ |
| 460 | else \ | 461 | else \ |
| 461 | subdir=${ns_appresdir}/site-lisp; \ | 462 | subdir=${ns_appresdir}/site-lisp; \ |