]> git.eshelyaron.com Git - emacs.git/commitdiff
ns_appsrc is not disjoint with srcdir/ns_appsrc
authorSam Steingold <sds@gnu.org>
Tue, 20 Feb 2018 16:18:24 +0000 (11:18 -0500)
committerSam Steingold <sds@gnu.org>
Tue, 20 Feb 2018 16:18:39 +0000 (11:18 -0500)
(links): Avoid "file already exists" errors
by removing the existing file.

nextstep/Makefile.in

index 0763e63f9302fc7eaf83bbab865730f5ea22f1eb..cb698987374473cc9a2babd0aa6edd5849e3389d 100644 (file)
@@ -76,7 +76,7 @@ links: ../src/emacs${EXEEXT}
        for d in $(shell cd ${srcdir}/${ns_appsrc}; find . -type d); do ${MKDIR_P} ${ns_appdir}/$$d; done
        for f in $(shell cd ${srcdir}/${ns_appsrc}; find . -type f); do ln -s $(shell cd ${srcdir}; pwd -P)/${ns_appsrc}/$$f ${ns_appdir}/$$f; done
        for d in $(shell cd ${ns_appsrc}; find . -type d); do ${MKDIR_P} ${ns_appdir}/$$d; done
-       for f in $(shell cd ${ns_appsrc}; find . -type f); do ln -s $(shell cd ${ns_appsrc}; pwd -P)/$$f ${ns_appdir}/$$f; done
+       for f in $(shell cd ${ns_appsrc}; find . -type f); do rm -f ${ns_appdir}/$$f; ln -s $(shell cd ${ns_appsrc}; pwd -P)/$$f ${ns_appdir}/$$f; done
        ln -s $(top_srcdir_abs)/lisp ${ns_appdir}/Contents/Resources
        ln -s $(top_srcdir_abs)/info ${ns_appdir}/Contents/Resources
        ${MKDIR_P} ${ns_appbindir}