emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/native-comp ac14316: * Fix ELC+ELN vs ELC prefix while building


From: Andrea Corallo
Subject: feature/native-comp ac14316: * Fix ELC+ELN vs ELC prefix while building non AoT native compiled files
Date: Sun, 25 Oct 2020 11:55:33 -0400 (EDT)

branch: feature/native-comp
commit ac143165ccf31f4c0b18947e92cb6cb18ae67323
Author: Andrea Corallo <akrl@sdf.org>
Commit: Andrea Corallo <akrl@sdf.org>

    * Fix ELC+ELN vs ELC prefix while building non AoT native compiled files
    
        * lisp/Makefile.in (am__v_ELC_0): Set it correctly when
        NATIVE_DISABLED is 1.
---
 lisp/Makefile.in | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 9187308..d6bb4cf 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -37,7 +37,11 @@ HAVE_NATIVE_COMP = @HAVE_NATIVE_COMP@
 AM_V_ELC = $(am__v_ELC_@AM_V@)
 am__v_ELC_ = $(am__v_ELC_@AM_DEFAULT_V@)
 ifeq ($(HAVE_NATIVE_COMP),yes)
+ifeq ($(NATIVE_DISABLED),1)
+am__v_ELC_0 = @echo "  ELC     " $@;
+else
 am__v_ELC_0 = @echo " ELC+ELN  " $@;
+endif
 ifndef NATIVE_FULL_AOT
 NATIVE_SKIP_NONDUMP = 1
 endif



reply via email to

[Prev in Thread] Current Thread [Next in Thread]