From a6f106d761f33117bab2882c20f3ccce3efd6743 Mon Sep 17 00:00:00 2001 From: Alan Third Date: Sun, 8 Oct 2023 23:14:24 +0100 Subject: [PATCH] Remove redundant pdmp file copy (bug#66022) * nextstep/Makefile.in (${ns_applibexecdir}/Emacs.pdmp): The pdmp file is not required in the app bundle for a non-self-contained install. (cherry picked from commit 1b0a1e5d224831c09ac655af5bd75b47827ae98d) --- nextstep/Makefile.in | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/nextstep/Makefile.in b/nextstep/Makefile.in index 89318a1efa8..62bd8cdeace 100644 --- a/nextstep/Makefile.in +++ b/nextstep/Makefile.in @@ -46,11 +46,7 @@ ns_check_file = @ns_appdir@/@ns_check_file@ .PHONY: all -ifeq ($(DUMPING),pdumper) -ns_pdmp_target = ${ns_applibexecdir}/Emacs.pdmp -endif - -all: ${ns_appdir} ${ns_appbindir}/Emacs ${ns_pdmp_target} +all: ${ns_appdir} ${ns_appbindir}/Emacs ${ns_check_file}: ${ns_appdir} @@ -71,12 +67,6 @@ ${ns_appbindir}/Emacs: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT} ${MKDIR_P} ${ns_appbindir} cp -f ../src/emacs${EXEEXT} $@ -${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 ../src/emacs${EXEEXT}: FORCE -- 2.39.5