summaryrefslogtreecommitdiff
path: root/nextstep
diff options
context:
space:
mode:
authorSam Steingold <sds@gnu.org>2018-02-20 11:18:24 -0500
committerSam Steingold <sds@gnu.org>2018-02-20 11:18:39 -0500
commit9ce10e893dcdec1a5d3d7ef985408b79cd5ecd69 (patch)
tree4071677d8b9d7416c555becfae3bd4864f358f80 /nextstep
parent650febcd3ec1cfe0c686414c9c8f1a7caaeefe71 (diff)
downloademacs-9ce10e893dcdec1a5d3d7ef985408b79cd5ecd69.tar.gz
ns_appsrc is not disjoint with srcdir/ns_appsrc
(links): Avoid "file already exists" errors by removing the existing file.
Diffstat (limited to 'nextstep')
-rw-r--r--nextstep/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/nextstep/Makefile.in b/nextstep/Makefile.in
index 0763e63f930..cb698987374 100644
--- a/nextstep/Makefile.in
+++ b/nextstep/Makefile.in
@@ -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}