Fix recipe for 'native-lisp' directory
* src/Makefile.in (../native-lisp): If the directory native-lisp exists, do nothing.
This commit is contained in:
parent
0bb42ef803
commit
4831426158
1 changed files with 6 additions and 4 deletions
|
@ -804,10 +804,12 @@ elnlisp := $(addprefix ${lispsource}/,${elnlisp}) $(lisp:.elc=.eln)
|
||||||
THEFILE=$< $<n
|
THEFILE=$< $<n
|
||||||
|
|
||||||
../native-lisp: | $(pdmp)
|
../native-lisp: | $(pdmp)
|
||||||
mkdir $@ && $(MAKE) $(AM_V_NO_PD) $(elnlisp)
|
if test ! -d $@; then \
|
||||||
LC_ALL=C $(RUN_TEMACS) -batch $(BUILD_DETAILS) -l loadup --temacs=pdump \
|
mkdir $@ && $(MAKE) $(AM_V_NO_PD) $(elnlisp); \
|
||||||
--bin-dest $(BIN_DESTDIR) --eln-dest $(ELN_DESTDIR)
|
LC_ALL=C $(RUN_TEMACS) -batch $(BUILD_DETAILS) -l loadup --temacs=pdump \
|
||||||
cp -f $@ $(bootstrap_pdmp)
|
--bin-dest $(BIN_DESTDIR) --eln-dest $(ELN_DESTDIR); \
|
||||||
|
cp -f $@ $(bootstrap_pdmp); \
|
||||||
|
fi
|
||||||
endif
|
endif
|
||||||
|
|
||||||
## VCSWITNESS points to the file that holds info about the current checkout.
|
## VCSWITNESS points to the file that holds info about the current checkout.
|
||||||
|
|
Loading…
Add table
Reference in a new issue