Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 0f8bf723 authored by Olivier Sallou's avatar Olivier Sallou
Browse files

fix compil issues

parent 02bbec06
No related branches found
No related tags found
No related merge requests found
visp (2.10.0-3) unstable; urgency=medium
* Override dh_install to avoid an error on kfreebsd where usr/lib/*/visp/*
doesn't exist
-- Fabien Spindler <Fabien.Spindler@inria.fr> Mon, 18 May 2015 08:49:35 +0200
visp (2.10.0-2) unstable; urgency=medium visp (2.10.0-2) unstable; urgency=medium
* Add patch to fix segfault on sparc, powerpc... * Add patch to fix segfault on sparc, powerpc...
......
...@@ -60,11 +60,11 @@ else ...@@ -60,11 +60,11 @@ else
endif endif
.PHONY: override_dh_auto_configure \ .PHONY: override_dh_auto_configure \
override_dh_auto_build-indep \ override_dh_auto_build-indep \
override_dh_strip \ override_dh_strip \
override_dh_auto_test \ override_dh_auto_test \
override_dh_install override_dh_install
%: %:
dh $@ --parallel dh $@ --parallel
...@@ -105,8 +105,11 @@ override_dh_auto_test: ...@@ -105,8 +105,11 @@ override_dh_auto_test:
override_dh_install: override_dh_install:
ifneq ($(DEB_HOST_ARCH_OS),hurd) ifneq ($(DEB_HOST_ARCH_OS),hurd)
# On hurd usr/lib/*/visp/* is empty and produces an error ifneq ($(DEB_HOST_ARCH_OS),kfreebsd)
# On hurd and kfreebsd usr/lib/*/visp/* is empty and produces an error
dh_install "usr/lib/*/visp/*" -p libvisp-dev dh_install "usr/lib/*/visp/*" -p libvisp-dev
# Continue zith regular dh_install # Continue with regular dh_install
dh_install dh_install
endif
endif endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment