summaryrefslogtreecommitdiff
path: root/nextstep
diff options
context:
space:
mode:
authorGerd Möllmann <gerd@gnu.org>2023-09-21 07:06:50 +0200
committerGerd Möllmann <gerd@gnu.org>2023-09-21 07:09:53 +0200
commitd0b1e3647fb4e6d889f9f999388c53daf0e67f0d (patch)
treeeb3c0ca880031fe10f27e8468e78d1a61b0a882b /nextstep
parentdad3afb7eb55932f7273a15895670e818fe144bd (diff)
downloademacs-d0b1e3647fb4e6d889f9f999388c53daf0e67f0d.tar.gz
macOS: only cp emacs.pdmp when installing (bug#66022)
* Makefile.in (install-arch-dep): install emacs.pdmp here for self-contained build * nextstep/Makefile.in (${ns_applibexecdir}/Emacs.pdmp): Don't cp emacs.pdmp if self-contained build.
Diffstat (limited to 'nextstep')
-rw-r--r--nextstep/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/nextstep/Makefile.in b/nextstep/Makefile.in
index 5e3465315af..89318a1efa8 100644
--- a/nextstep/Makefile.in
+++ b/nextstep/Makefile.in
@@ -71,11 +71,11 @@ ${ns_appbindir}/Emacs: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT}
${MKDIR_P} ${ns_appbindir}
cp -f ../src/emacs${EXEEXT} $@
-# FIXME: Don't install the dump file into the app bundle when
-# self-contained install is disabled.
${ns_applibexecdir}/Emacs.pdmp: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT}.pdmp
${MKDIR_P} ${ns_applibexecdir}
+ifeq (${ns_self_contained},no)
cp -f ../src/emacs${EXEEXT}.pdmp $@
+endif
.PHONY: FORCE