emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/hyperbole 433eba17ca 092/143: Print build environment i


From: ELPA Syncer
Subject: [elpa] externals/hyperbole 433eba17ca 092/143: Print build environment info when using eln target (#445)
Date: Mon, 19 Feb 2024 15:59:14 -0500 (EST)

branch: externals/hyperbole
commit 433eba17ca4b1e8329a493d51aa58220c8971945
Author: Mats Lidell <mats.lidell@lidells.se>
Commit: GitHub <noreply@github.com>

    Print build environment info when using eln target (#445)
---
 ChangeLog | 6 ++++++
 Makefile  | 9 ++++++---
 2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 07e3c65004..2458ead204 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-01-16  Mats Lidell  <matsl@gnu.org>
+
+* Makefile (eln): Use echo target for showing build info as part of the
+    eln build.
+    (echo): Show Emacs location and version in build environment info.
+
 2024-01-15  Bob Weiner  <rsw@gnu.org>
 
 * hyrolo.el (hyrolo-to-entry-beginning): Rewrite to move properly.
diff --git a/Makefile b/Makefile
index 142ed1bb01..bf52af0a97 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
 # Author:       Bob Weiner
 #
 # Orig-Date:    15-Jun-94 at 03:42:38
-# Last-Mod:     15-Jan-24 at 08:28:48 by Mats Lidell
+# Last-Mod:     16-Jan-24 at 11:26:22 by Mats Lidell
 #
 # Copyright (C) 1994-2023  Free Software Foundation, Inc.
 # See the file HY-COPY for license information.
@@ -260,7 +260,10 @@ help:
 all: help
 
 echo:
-       which emacs; echo $(TERM); echo "$(DISPLAY)"
+       @echo "Emacs: $(shell which emacs)"
+       @echo "Version: $(shell emacs --version)"
+       @echo "TERM: $(TERM)"
+       @echo "DISPLAY: $(DISPLAY)"
 
 install: elc install-info install-html $(data_dir)/hkey-help.txt
 
@@ -325,7 +328,7 @@ remove-elc:
 bin: src remove-elc new-bin
 
 # Native compilation (Requires Emacs built with native compilation support.)
-eln: src
+eln: echo src
        HYPB_NATIVE_COMP=yes make new-bin
 
 tags: TAGS



reply via email to

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