aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2021-10-03 22:35:04 +0300
committerEli Zaretskii2021-10-03 22:35:04 +0300
commit483142615864e990b2ec45e61681d7ab44096335 (patch)
tree56d78d3013035d4f157ea1207de3928afc838a09 /src
parent0bb42ef80357c86ea7dd6a2bccaff111bc83b65d (diff)
downloademacs-483142615864e990b2ec45e61681d7ab44096335.tar.gz
emacs-483142615864e990b2ec45e61681d7ab44096335.zip
Fix recipe for 'native-lisp' directory
* src/Makefile.in (../native-lisp): If the directory native-lisp exists, do nothing.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index c4e57ca63be..25c7865d4a1 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -804,10 +804,12 @@ elnlisp := $(addprefix ${lispsource}/,${elnlisp}) $(lisp:.elc=.eln)
804 THEFILE=$< $<n 804 THEFILE=$< $<n
805 805
806../native-lisp: | $(pdmp) 806../native-lisp: | $(pdmp)
807 mkdir $@ && $(MAKE) $(AM_V_NO_PD) $(elnlisp) 807 if test ! -d $@; then \
808 LC_ALL=C $(RUN_TEMACS) -batch $(BUILD_DETAILS) -l loadup --temacs=pdump \ 808 mkdir $@ && $(MAKE) $(AM_V_NO_PD) $(elnlisp); \
809 --bin-dest $(BIN_DESTDIR) --eln-dest $(ELN_DESTDIR) 809 LC_ALL=C $(RUN_TEMACS) -batch $(BUILD_DETAILS) -l loadup --temacs=pdump \
810 cp -f $@ $(bootstrap_pdmp) 810 --bin-dest $(BIN_DESTDIR) --eln-dest $(ELN_DESTDIR); \
811 cp -f $@ $(bootstrap_pdmp); \
812 fi
811endif 813endif
812 814
813## VCSWITNESS points to the file that holds info about the current checkout. 815## VCSWITNESS points to the file that holds info about the current checkout.