From 2e7e19a5b07e533716f3e1612c10a85fa2966d6e Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Thu, 27 Jan 2022 18:53:59 +0100 Subject: [PATCH] package/htpdate: fix install Fix the following build failure raised since bump to version 1.3.3 in commit 163509a8e0d558e6339c5489f072dfe805e0cc34: >>> htpdate 1.3.3 Installing to target PATH="/home/buildroot/autobuild/instance-0/output-1/host/bin:/home/buildroot/autobuild/instance-0/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" /usr/bin/make -j4 -C /home/buildroot/autobuild/instance-0/output-1/build/htpdate-1.3.3 DESTDIR=/home/buildroot/autobuild/instance-0/output-1/target install make[1]: Entering directory '/home/buildroot/autobuild/instance-0/output-1/build/htpdate-1.3.3' strip -s htpdate strip: Unable to recognise the format of the input file `htpdate' Fixes: - http://autobuild.buildroot.org/results/f1034de5ebc2fc2c49711820077d0b6e5e13aea5 Signed-off-by: Fabrice Fontaine Signed-off-by: Yann E. MORIN --- package/htpdate/htpdate.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/htpdate/htpdate.mk b/package/htpdate/htpdate.mk index 200c3207a2..54b3ec2569 100644 --- a/package/htpdate/htpdate.mk +++ b/package/htpdate/htpdate.mk @@ -19,7 +19,8 @@ define HTPDATE_BUILD_CMDS endef define HTPDATE_INSTALL_TARGET_CMDS - $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install + $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \ + DESTDIR=$(TARGET_DIR) install endef define HTPDATE_INSTALL_INIT_SYSV