diff mbox series

[1/1] package/libiio: fix install of C# bindings

Message ID 20200311212533.829423-1-fontaine.fabrice@gmail.com
State Accepted
Headers show
Series [1/1] package/libiio: fix install of C# bindings | expand

Commit Message

Fabrice Fontaine March 11, 2020, 9:25 p.m. UTC
libiio-sharp.dll.mdb is not installed since version 0.19.0 and
https://github.com/analogdevicesinc/libiio/commit/8b571969fa245fb25c6431340f23ff157e34841b

Indeed, EXISTS "${LIBIIO_CS_DLL}.mdb" will always return false because
the file will not exist when cmake will create the makefiles.

Fixes:
 - http://autobuild.buildroot.org/results/42ffbd07d0e998c75d1afde6a5db7d6418c10f45

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libiio/libiio.mk | 1 -
 1 file changed, 1 deletion(-)

Comments

Thomas Petazzoni April 25, 2020, 2:23 p.m. UTC | #1
On Wed, 11 Mar 2020 22:25:33 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> libiio-sharp.dll.mdb is not installed since version 0.19.0 and
> https://github.com/analogdevicesinc/libiio/commit/8b571969fa245fb25c6431340f23ff157e34841b
> 
> Indeed, EXISTS "${LIBIIO_CS_DLL}.mdb" will always return false because
> the file will not exist when cmake will create the makefiles.
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/42ffbd07d0e998c75d1afde6a5db7d6418c10f45
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/libiio/libiio.mk | 1 -
>  1 file changed, 1 deletion(-)

Applied to master, thanks.

Thomas
diff mbox series

Patch

diff --git a/package/libiio/libiio.mk b/package/libiio/libiio.mk
index efd582a5ea..af5b27ba5f 100644
--- a/package/libiio/libiio.mk
+++ b/package/libiio/libiio.mk
@@ -72,7 +72,6 @@  endif
 
 ifeq ($(BR2_PACKAGE_LIBIIO_BINDINGS_CSHARP),y)
 define LIBIIO_INSTALL_CSHARP_BINDINGS_TO_TARGET
-	rm $(TARGET_DIR)/usr/lib/cli/libiio-sharp-$(LIBIIO_VERSION)/libiio-sharp.dll.mdb
 	$(HOST_DIR)/bin/gacutil -root $(TARGET_DIR)/usr/lib -i \
 		$(TARGET_DIR)/usr/lib/cli/libiio-sharp-$(LIBIIO_VERSION)/libiio-sharp.dll
 endef