From 01cf787a4174a3e70abaf6577771235f35a3faf7 Mon Sep 17 00:00:00 2001 From: Miroslav Ondra Date: Fri, 5 Jun 2020 15:53:05 +0200 Subject: [PATCH] fix debian/rules install (use temporary destination) --- debian/rules | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian/rules b/debian/rules index 610f20c..b0fcd81 100755 --- a/debian/rules +++ b/debian/rules @@ -114,7 +114,10 @@ override_dh_auto_install: endif ifeq ($(shell dpkg-architecture -q DEB_HOST_ARCH),armhf) override_dh_auto_install: + ls -lR debian/tempdest + ls -lR debian/$(BINARY_PKG_NAME) mv debian/tempdest/* debian/$(BINARY_PKG_NAME) || exit 1; + ls -lR debian/$(BINARY_PKG_NAME) #for LDP in $(LINUX_DIR_PATH); do \ # dh_auto_install --destdir=debian/$(BINARY_PKG_NAME) -- CCPREFIX=${DEB_TARGET_GNU_TYPE}- \ # LINUX_DIR_PATH=$${LDP} ARCH=${DEB_TARGET_ARCH_CPU} || exit 1;\ -- 2.34.1