From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Byrne Date: Tue, 26 Nov 2019 09:52:04 +0000 Subject: [Buildroot] [PATCH v2] package/minicom: make default port and lock directory fixed defaults In-Reply-To: <0102016e8e961113-8b7cfd63-a693-49fd-93a3-70b7bb311860-000000@eu-west-1.amazonses.com> References: <0102016e8e961113-8b7cfd63-a693-49fd-93a3-70b7bb311860-000000@eu-west-1.amazonses.com> Message-ID: <0102016ea7200662-f8edd1c2-afe0-49e9-b3c7-edfd26668a59-000000@eu-west-1.amazonses.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Minicom's configure script will set values for the default port and lock directory based on the configuration of the host machine, which is not useful for cross-compiling or reproducible builds, so instead set them to sensible default values. Signed-off-by: James Byrne --- Changes v1 -> v2: - Use fixed default values instead of configurable ones. Signed-off-by: James Byrne --- package/minicom/minicom.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/minicom/minicom.mk b/package/minicom/minicom.mk index 11d69d4d0e..82484557ab 100644 --- a/package/minicom/minicom.mk +++ b/package/minicom/minicom.mk @@ -22,4 +22,6 @@ define MINICOM_MKDIR_M4 endef MINICOM_POST_PATCH_HOOKS += MINICOM_MKDIR_M4 +MINICOM_CONF_OPTS = --enable-dfl-port=/dev/ttyS1 --enable-lock-dir=/var/lock + $(eval $(autotools-package)) -- 2.24.0