Skip to content
Snippets Groups Projects
Commit 2a3bfae9 authored by Simon McVittie's avatar Simon McVittie
Browse files

debian: Install tools with canonicalized multiarch prefix


Create a symlink with $(DEB_HOST_GNU_TYPE) in the name for compatibility
with AC_CHECK_TOOL.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent 12b83f65
No related branches found
No related tags found
1 merge request!311Build capsule-capture-libs from a bundled copy of libcapsule
......@@ -9,7 +9,7 @@ binaries := $(shell dh_listpackages)
confflags = \
--disable-Werror \
--disable-silent-rules \
--enable-host-prefix=$(DEB_HOST_GNU_TYPE)- \
--enable-host-prefix=$(DEB_HOST_MULTIARCH)- \
--libexecdir=\$${exec_prefix}/lib/libcapsule \
$(NULL)
......@@ -64,6 +64,14 @@ override_dh_auto_build:
override_dh_auto_install:
dh_auto_install
if [ $(DEB_HOST_MULTIARCH) != $(DEB_HOST_GNU_TYPE) ]; then \
set -e; \
cd debian/tmp/usr/bin; \
for bin in $(DEB_HOST_MULTIARCH)-*; do \
tail="$${bin#$(DEB_HOST_MULTIARCH)-}"; \
ln -s "$$bin" "$(DEB_HOST_GNU_TYPE)-$$tail"; \
done; \
fi
$(MAKE) -C debian/libGL-proxy-build install V=1 $(proxy_vars) \
DESTDIR=$(CURDIR)/debian/libGL-proxy-build/shims
install -d debian/tmp/usr/lib/libcapsule/shims/lib/$(DEB_HOST_MULTIARCH)
......
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