]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix recipe for 'native-lisp' directory
authorEli Zaretskii <eliz@gnu.org>
Sun, 3 Oct 2021 19:35:04 +0000 (22:35 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 3 Oct 2021 19:35:04 +0000 (22:35 +0300)
* src/Makefile.in (../native-lisp): If the directory native-lisp
exists, do nothing.

src/Makefile.in

index c4e57ca63be6488369fdcd10ef93c6e939f63e51..25c7865d4a127daf2b0b6defa75c45bfb6e20695 100644 (file)
@@ -804,10 +804,12 @@ elnlisp := $(addprefix ${lispsource}/,${elnlisp}) $(lisp:.elc=.eln)
                THEFILE=$< $<n
 
 ../native-lisp: | $(pdmp)
-       mkdir $@ && $(MAKE) $(AM_V_NO_PD) $(elnlisp)
-       LC_ALL=C $(RUN_TEMACS) -batch $(BUILD_DETAILS) -l loadup --temacs=pdump \
-               --bin-dest $(BIN_DESTDIR) --eln-dest $(ELN_DESTDIR)
-       cp -f $@ $(bootstrap_pdmp)
+       if test ! -d $@; then \
+         mkdir $@ && $(MAKE) $(AM_V_NO_PD) $(elnlisp); \
+         LC_ALL=C $(RUN_TEMACS) -batch $(BUILD_DETAILS) -l loadup --temacs=pdump \
+               --bin-dest $(BIN_DESTDIR) --eln-dest $(ELN_DESTDIR); \
+         cp -f $@ $(bootstrap_pdmp); \
+       fi
 endif
 
 ## VCSWITNESS points to the file that holds info about the current checkout.