[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/hyperbole 0176666b61 2/2: Add quotes so make is execute
From: |
ELPA Syncer |
Subject: |
[elpa] externals/hyperbole 0176666b61 2/2: Add quotes so make is executed in the container (#525) |
Date: |
Fri, 17 May 2024 03:58:20 -0400 (EDT) |
branch: externals/hyperbole
commit 0176666b6125be769e17f20dc80085b3a9975a09
Author: Mats Lidell <mats.lidell@lidells.se>
Commit: GitHub <noreply@github.com>
Add quotes so make is executed in the container (#525)
---
ChangeLog | 4 ++++
Makefile | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index b3d962b649..fe7a36b0bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2024-05-17 Mats Lidell <matsl@gnu.org>
+
+* Makefile (dockerized): Add quotes so make is executed in the container.
+
2024-05-16 Mats Lidell <matsl@gnu.org>
* test/hact-tests.el (hact-tests--action-params-with-lambdas)
diff --git a/Makefile b/Makefile
index 940d0100d1..5c69528ac8 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
# Author: Bob Weiner
#
# Orig-Date: 15-Jun-94 at 03:42:38
-# Last-Mod: 14-Apr-24 at 23:00:20 by Bob Weiner
+# Last-Mod: 6-May-24 at 00:25:45 by Mats Lidell
#
# Copyright (C) 1994-2023 Free Software Foundation, Inc.
# See the file HY-COPY for license information.
@@ -561,7 +561,7 @@ DOCKER_VERSION = master-ci
endif
dockerized:
- docker run -v $$(pwd):/hyperbole -it silex/emacs:${DOCKER_VERSION} bash
-c cd hyperbole && make ${DOCKER_TARGETS}
+ docker run -v $$(pwd):/hyperbole -it silex/emacs:${DOCKER_VERSION} bash
-c "make -C hyperbole ${DOCKER_TARGETS}"
# Run with coverage. Run tests given by testspec and monitor the
# coverage for the specified file.