]> git.eshelyaron.com Git - emacs.git/commitdiff
* Fix ELC+ELN vs ELC prefix while building non AoT native compiled files
authorAndrea Corallo <akrl@sdf.org>
Sun, 25 Oct 2020 15:45:27 +0000 (15:45 +0000)
committerAndrea Corallo <akrl@sdf.org>
Sun, 25 Oct 2020 15:46:57 +0000 (15:46 +0000)
* lisp/Makefile.in (am__v_ELC_0): Set it correctly when
NATIVE_DISABLED is 1.

lisp/Makefile.in

index 91873086d2b0af39ef7fc0b03afe1e27403afff9..d6bb4cf5570677738ec286f42259a0accd22dc2c 100644 (file)
@@ -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